結果
問題 | No.1469 programing |
ユーザー | tails |
提出日時 | 2021-04-09 21:50:47 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 9 ms / 3,000 ms |
コード長 | 255 bytes |
コンパイル時間 | 1,370 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 9,168 KB |
最終ジャッジ日時 | 2024-06-25 05:04:51 |
合計ジャッジ時間 | 2,168 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 9 ms
9,168 KB |
コンパイルメッセージ
main.c:8:1: warning: return type defaults to 'int' [-Wimplicit-int] 8 | main(){ | ^~~~ main.c: In function 'main': main.c:17:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 17 | write(1,wbuf,wp-wbuf); | ^~~~~ main.c:18:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 18 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") char*mmap(); char wbuf[1<<28]; main(){ char*rp=mmap(0l,1l<<28,1,2,0,0ll); char*wp=wbuf; int p=0,c; while(c=*rp++,c>=64){ if(p!=c){ *wp++=p=c; } } write(1,wbuf,wp-wbuf); _exit(0); }