結果

問題 No.1114 足し算盆に返らず
ユーザー tailstails
提出日時 2020-11-02 10:47:08
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 1,238 ms
コンパイル使用メモリ 56,396 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 06:08:56
合計ジャッジ時間 17,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:9:1: warning: return type defaults to 'int' [-Wimplicit-int]
    9 | main(){
      | ^~~~
main.c: In function 'main':
main.c:57:9: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration]
   57 |         read(0,rbuf,16);
      |         ^~~~
main.c:62:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   62 |         write(1,wbuf,n);
      |         ^~~~~
main.c:63:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   63 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

#define RD(v) int v=0;{int c;while(c=*rp++-48,c>=0)v=v*10+c;}

char wbuf[6*50000];
char rbuf[16];

main(){
	char*wp=wbuf;
	for(int a=49;a<58;a+=2)
	{
		*wp++=a;
		*wp++=32;
	}
	for(int b=49;b<58;b+=1)
	for(int a=49;a<58;a+=2)
	{
		*wp++=b;
		*wp++=a;
		*wp++=32;
	}
	for(int c=49;c<58;c+=1)
	for(int b=48;b<58;b+=1)
	for(int a=49;a<58;a+=2)
	{
		*wp++=c;
		*wp++=b;
		*wp++=a;
		*wp++=32;
	}
	for(int d=49;d<58;d+=1)
	for(int c=48;c<58;c+=1)
	for(int b=48;b<58;b+=1)
	for(int a=49;a<58;a+=2)
	{
		*wp++=d;
		*wp++=c;
		*wp++=b;
		*wp++=a;
		*wp++=32;
	}
	for(int e=49;e<58;e+=1)
	for(int d=48;d<58;d+=1)
	for(int c=48;c<58;c+=1)
	for(int b=48;b<58;b+=1)
	for(int a=49;a<58;a+=2)
	{
		*wp++=e;
		*wp++=d;
		*wp++=c;
		*wp++=b;
		*wp++=a;
		*wp++=32;
	}

	read(0,rbuf,16);
	char*rp=rbuf;
	RD(n);
	n=n+1>>1;
	n=n<5?n*2:n<50?n*3-5:n<500?n*4-55:n<5000?n*5-555:n*6-5555;
	write(1,wbuf,n);
	_exit(0);
}
0