結果
問題 | No.2252 Find Zero |
ユーザー | a01sa01to |
提出日時 | 2023-07-29 00:04:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 651 bytes |
コンパイル時間 | 1,868 ms |
コンパイル使用メモリ | 202,952 KB |
実行使用メモリ | 25,580 KB |
平均クエリ数 | 121.33 |
最終ジャッジ日時 | 2024-10-06 22:49:14 |
合計ジャッジ時間 | 4,239 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 47 ms
25,580 KB |
testcase_03 | AC | 63 ms
24,940 KB |
testcase_04 | AC | 53 ms
25,196 KB |
testcase_05 | AC | 50 ms
24,812 KB |
testcase_06 | AC | 49 ms
25,452 KB |
testcase_07 | AC | 49 ms
25,196 KB |
testcase_08 | AC | 59 ms
24,836 KB |
testcase_09 | WA | - |
testcase_10 | AC | 48 ms
25,196 KB |
testcase_11 | AC | 51 ms
25,052 KB |
testcase_12 | AC | 47 ms
25,196 KB |
testcase_13 | AC | 49 ms
24,556 KB |
testcase_14 | AC | 47 ms
25,184 KB |
testcase_15 | WA | - |
testcase_16 | AC | 45 ms
24,812 KB |
testcase_17 | AC | 47 ms
24,556 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); ++i) int Query(int x, int y) { printf("? %d %d\n", x, y); fflush(stdout); int z; cin >> z; return z; } int main() { int n; cin >> n; vector<bool> a(n, false); int cnt = 0; rep(i, n) { if (a[i]) continue; int z = i; if (cnt != n - 1) z = Query(i, i); if (z == i) { printf("! %d\n", i); fflush(stdout); return 0; } a[i] = a[z] = true; cnt += 2; } return 0; }