結果
問題 | No.304 鍵(1) |
ユーザー | tails |
提出日時 | 2022-03-31 16:15:47 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 63 ms / 2,000 ms |
コード長 | 96 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 03:07:50 |
合計ジャッジ時間 | 1,024 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
25,476 KB |
testcase_01 | AC | 30 ms
25,204 KB |
testcase_02 | AC | 63 ms
25,220 KB |
testcase_03 | AC | 28 ms
24,964 KB |
testcase_04 | AC | 44 ms
24,836 KB |
testcase_05 | AC | 27 ms
24,556 KB |
コンパイルメッセージ
main.c:1:1: warning: return type defaults to 'int' [-Wimplicit-int] 1 | main(){ | ^~~~ main.c: In function 'main': main.c:4:15: warning: implicit declaration of function 'dprintf' [-Wimplicit-function-declaration] 4 | while(dprintf(1,"%03u\n",a++),read(0,&b,7),b&8){ | ^~~~~~~ main.c:4:39: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration] 4 | while(dprintf(1,"%03u\n",a++),read(0,&b,7),b&8){ | ^~~~
ソースコード
main(){ unsigned a=0; unsigned long b; while(dprintf(1,"%03u\n",a++),read(0,&b,7),b&8){ } }