結果
問題 | No.514 宝探し3 |
ユーザー | akakimidori |
提出日時 | 2017-06-21 12:07:26 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 254 ms |
コンパイル使用メモリ | 20,608 KB |
実行使用メモリ | 40,476 KB |
最終ジャッジ日時 | 2024-07-16 13:53:10 |
合計ジャッジ時間 | 6,600 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
#include<stdio.h> unsigned int ask(unsigned int x,unsigned int y){ printf("%u %u\n",x,y); fflush(stdout); unsigned int d=0; char c; while((c=getchar())!=EOF){ d=10*d+c-'0'; } 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; if(a>0){ ask(a,b); } else { ask(e,0); } return; } int main(void){ run(); return 0; }