結果

問題 No.999 てん vs. ほむ
ユーザー tailstails
提出日時 2020-10-22 15:24:19
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 8,672 KB
最終ジャッジ日時 2024-07-21 09:18:24
合計ジャッジ時間 1,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,400 KB
testcase_01 AC 1 ms
6,528 KB
testcase_02 AC 1 ms
6,656 KB
testcase_03 AC 1 ms
6,656 KB
testcase_04 AC 1 ms
6,656 KB
testcase_05 AC 1 ms
6,656 KB
testcase_06 AC 1 ms
6,656 KB
testcase_07 AC 1 ms
6,656 KB
testcase_08 AC 1 ms
6,804 KB
testcase_09 AC 2 ms
8,500 KB
testcase_10 AC 1 ms
7,272 KB
testcase_11 AC 1 ms
7,092 KB
testcase_12 AC 2 ms
7,396 KB
testcase_13 AC 3 ms
8,672 KB
testcase_14 AC 3 ms
8,672 KB
testcase_15 AC 3 ms
8,672 KB
testcase_16 AC 3 ms
8,544 KB
testcase_17 AC 1 ms
7,804 KB
testcase_18 AC 2 ms
7,660 KB
testcase_19 AC 1 ms
7,804 KB
testcase_20 AC 1 ms
7,680 KB
testcase_21 AC 3 ms
8,636 KB
testcase_22 AC 2 ms
8,588 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int]
    2 | main(){
      | ^~~~
main.c: In function 'main':
main.c:6:9: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration]
    6 |         read(0,r=rbuf,sizeof rbuf);
      |         ^~~~
main.c:7:12: warning: implicit declaration of function 'fork' [-Wimplicit-function-declaration]
    7 |         if(fork()) _exit(0);
      |            ^~~~
main.c:7:20: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
    7 |         if(fork()) _exit(0);
      |                    ^~~~~
      |                    _Exit
main.c:21:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
   21 |         printf("%ld",b*2-a);
      |         ^~~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'printf'
  +++ |+#include <stdio.h>
    1 | char rbuf[2000000];
main.c:21:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
   21 |         printf("%ld",b*2-a);
      |         ^~~~~~
main.c:21:9: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

char rbuf[2000000];
main(){
	int n,x,y,c;
	long a=0,b=0;
	char*r;
	read(0,r=rbuf,sizeof rbuf);
	if(fork()) _exit(0);
	while(*r++>=48);
	while(*r){
		x=0;
		while(c=*r++,c>=48){
			x=x*10+(c-48);
		}
		y=0;
		while(c=*r++,c>=48){
			y=y*10+(c-48);
		}
		a+=x-y;
		if(b<a) b=a;
	}
	printf("%ld",b*2-a);
}
0