結果
問題 | No.514 宝探し3 |
ユーザー | akakimidori |
提出日時 | 2017-06-21 11:56:59 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 383 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 20,480 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 2.75 |
最終ジャッジ日時 | 2024-07-16 13:53:13 |
合計ジャッジ時間 | 2,217 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 21 ms
25,592 KB |
testcase_08 | AC | 21 ms
24,964 KB |
testcase_09 | WA | - |
testcase_10 | AC | 18 ms
25,220 KB |
testcase_11 | AC | 17 ms
24,836 KB |
コンパイルメッセージ
main.c: In function ‘ask’: main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%u",&d); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> unsigned int ask(unsigned int x,unsigned int y){ printf("%u %u\n",x,y); fflush(stdout); unsigned int d; scanf("%u",&d); return d; } void run(void){ unsigned int d=ask(0,0); if(d==0) return; unsigned int e=ask(0,d); if(e==0) return; unsigned int a=d-e/2; unsigned int b=e/2; ask(a,b); return; } int main(void){ run(); return 0; }