結果
問題 | No.253 ロウソクの長さ |
ユーザー | eve__fuyuki |
提出日時 | 2018-03-16 20:56:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 649 bytes |
コンパイル時間 | 698 ms |
コンパイル使用メモリ | 56,452 KB |
実行使用メモリ | 40,268 KB |
平均クエリ数 | 8.81 |
最終ジャッジ日時 | 2024-07-17 01:39:48 |
合計ジャッジ時間 | 5,142 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,496 KB |
testcase_01 | AC | 22 ms
24,836 KB |
testcase_02 | AC | 22 ms
24,580 KB |
testcase_03 | AC | 22 ms
24,836 KB |
testcase_04 | AC | 22 ms
25,220 KB |
testcase_05 | AC | 21 ms
25,220 KB |
testcase_06 | AC | 22 ms
25,220 KB |
testcase_07 | AC | 23 ms
25,220 KB |
testcase_08 | AC | 22 ms
25,220 KB |
testcase_09 | AC | 24 ms
24,836 KB |
testcase_10 | AC | 24 ms
25,476 KB |
testcase_11 | AC | 23 ms
25,220 KB |
testcase_12 | AC | 22 ms
24,580 KB |
testcase_13 | AC | 23 ms
25,220 KB |
testcase_14 | AC | 22 ms
25,220 KB |
testcase_15 | AC | 21 ms
24,580 KB |
testcase_16 | AC | 22 ms
25,220 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include<iostream> using namespace std; int timer = 0; int ask(int Y){ cout << "? " << Y << endl; int res; cin >> res; timer++; return res; } int main(){ int res = ask(100); int min = 10; int max = 1e9; int mid; if(res == 0){ cout << "! " << 100 << endl; } else if(res < 0) max = 99; else min = 101; while(1){ mid = min + (max-min)/2; res = ask(mid - timer); if(res == 0){ cout << "! " << mid << endl; break; } else if(res == 1){ min = mid+1; } else{ max = mid-1; } } return 0; }