結果
問題 | No.253 ロウソクの長さ |
ユーザー | pekempey |
提出日時 | 2015-07-24 23:57:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,163 bytes |
コンパイル時間 | 1,348 ms |
コンパイル使用メモリ | 159,708 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 71.86 |
最終ジャッジ日時 | 2024-07-16 05:03:24 |
合計ジャッジ時間 | 6,589 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
25,196 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 21 ms
24,836 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 22 ms
24,964 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 22 ms
25,208 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 21 ms
24,964 KB |
testcase_17 | WA | - |
testcase_18 | AC | 21 ms
24,964 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 23 ms
25,220 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 21 ms
24,580 KB |
testcase_32 | WA | - |
testcase_33 | AC | 22 ms
24,836 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) for (int i = (a) - 1; i >= 0; i--) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define itall(a) a.begin(), a.end() using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; const double pi = acos(-1); const double eps = 1e-8; template<typename T> inline T sq(T a) { return a * a; } template<typename T> inline T cb(T a) { return a * a * a; } template<typename T> inline bool umin(T &a, const T &b) { return b < a && (a = b, true); } template<typename T> inline bool umax(T &a, const T &b) { return a < b && (a = b, true); } int get(int x) { cout << "? " << x << endl; int res; cin >> res; return res; } int main() { int l = 0, r = 1e9 + 1; int ans = 0; for (int i = 0; i <= 100; i++) { int m = (l + r) / 2; int g = get(m); if (g == 0) { ans = m + i; break; } else if (g > 0) { l = m; } else { r = m; } } cout << "! " << ans << endl; }