Submission #3837266


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;
		while((s*10)+g<100)
		{
			printf("%d%d%d\n",i,s,g);
			g++;
			if(g==10)
			{
				s++;
				g=0;
			}
		}
	}
	return 0;
}

Submission Info

Submission Time
Task A - 天下一序数
User luogu_bot5
Language C++ (GCC 5.4.1)
Score 0
Code Size 309 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