結果
問題 | No.2252 Find Zero |
ユーザー | Shirotsume |
提出日時 | 2023-03-24 21:43:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 71,864 KB |
平均クエリ数 | 15.11 |
最終ジャッジ日時 | 2024-09-18 16:55:46 |
合計ジャッジ時間 | 2,983 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 82 ms
71,468 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 90 ms
71,148 KB |
testcase_07 | AC | 84 ms
70,144 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 82 ms
71,728 KB |
testcase_11 | AC | 83 ms
70,860 KB |
testcase_12 | AC | 83 ms
70,916 KB |
testcase_13 | AC | 84 ms
71,268 KB |
testcase_14 | AC | 85 ms
71,464 KB |
testcase_15 | WA | - |
testcase_16 | AC | 81 ms
70,536 KB |
testcase_17 | AC | 86 ms
71,736 KB |
ソースコード
import sys from collections import deque, Counter input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 def query(x, y): print('?', x, y, flush=True) return ii() def answer(z): print('!', z, flush=True) exit() n = ii() s = set(range(n)) pos = {} for i in range(n): if i not in s: continue s.discard(i) z = query(i, i) if z == i: answer(z) if z in pos: answer(pos[z]) s.discard(z) if len(s) == 1: answer(s.pop()) pos[i] = z