Submission #3837249


Source Code Expand

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
	int i,s,g,j;
	for(i=1;i<=9;i++)
	{
		if(i==2)
		{
			printf("1000\n");
		}
		s=0;
		g=1;
		for(j=1;j<=99;j++)
		{
			printf("1%d%d\n",s,g);
			g++;
			if(g==10)
			{
				s++;
				g=0;
			}
		}
	}
	return 0;
}

Submission Info

Submission Time
Task A - 天下一序数
User luogu_bot1
Language C++ (GCC 5.4.1)
Score 0
Code Size 305 Byte
Status WA
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 0 / 20
Status
WA × 1
Set Name Test Cases
All output-only.txt
Case Name Status Exec Time Memory
output-only.txt WA 1 ms 256 KB