結果
問題 | No.513 宝探し2 |
ユーザー | olphe |
提出日時 | 2017-05-05 22:32:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 784 bytes |
コンパイル時間 | 957 ms |
コンパイル使用メモリ | 107,372 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 4.00 |
最終ジャッジ日時 | 2024-07-16 12:54:44 |
合計ジャッジ時間 | 2,833 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,220 KB |
testcase_01 | AC | 23 ms
24,580 KB |
testcase_02 | AC | 23 ms
24,580 KB |
testcase_03 | AC | 23 ms
24,836 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 22 ms
24,836 KB |
testcase_07 | AC | 22 ms
24,964 KB |
testcase_08 | AC | 23 ms
24,964 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 23 ms
24,964 KB |
ソースコード
#include "iostream" #include "climits" #include "list" #include "queue" #include "stack" #include "set" #include "functional" #include "algorithm" #include "math.h" #include "utility" #include "string" #include "map" #include "unordered_map" #include "iomanip" #include "random" using namespace std; const long long int MOD = 1000000007; int a, b, c, d; int main() { ios::sync_with_stdio(false); cout << "0 " << "50000\n"; cin >> a; cout << "100000 " << "50000\n"; cin >> b; c = a + b - 100000; c /= 2; if (a < b) { cout << 100000 - b + c << " " << 50000 + c << endl; cin >> d; cout << 100000 - b + c << " " << 50000 - c << endl; } else { cout << 0 + a + c << " " << 50000 + c << endl; cin >> d; cout << 0 + a + c << " " << 50000 - c << endl; } return 0; }