結果

問題 No.2252 Find Zero
ユーザー dangodango
提出日時 2023-06-18 21:27:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 80,480 KB
平均クエリ数 119.28
最終ジャッジ日時 2024-06-26 08:55:23
合計ジャッジ時間 3,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
68,448 KB
testcase_01 AC 92 ms
68,192 KB
testcase_02 AC 142 ms
80,480 KB
testcase_03 AC 118 ms
76,384 KB
testcase_04 AC 114 ms
75,548 KB
testcase_05 AC 92 ms
68,696 KB
testcase_06 AC 124 ms
76,888 KB
testcase_07 AC 119 ms
76,248 KB
testcase_08 AC 124 ms
76,512 KB
testcase_09 AC 117 ms
75,872 KB
testcase_10 AC 91 ms
68,676 KB
testcase_11 AC 93 ms
68,824 KB
testcase_12 AC 92 ms
68,824 KB
testcase_13 AC 93 ms
68,696 KB
testcase_14 AC 93 ms
68,824 KB
testcase_15 AC 92 ms
68,312 KB
testcase_16 AC 94 ms
68,440 KB
testcase_17 AC 93 ms
68,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = set(range(int(input())))
while len(S)>1:
	X, Y = S.pop(),S.pop()
	print("?", X, Y)
	Z = int(input())
	if X == Z: print("!", Y); exit(0)
	if Y == Z: print("!", X); exit(0)
print("!", S.pop())
0