結果

問題 No.2252 Find Zero
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 03:22:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,744 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-06-01 14:24:47
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
27,208 KB
testcase_01 AC 119 ms
27,336 KB
testcase_02 AC 86 ms
27,464 KB
testcase_03 AC 102 ms
27,384 KB
testcase_04 AC 89 ms
27,496 KB
testcase_05 AC 87 ms
27,496 KB
testcase_06 AC 86 ms
27,360 KB
testcase_07 AC 86 ms
27,616 KB
testcase_08 AC 97 ms
26,984 KB
testcase_09 AC 102 ms
27,744 KB
testcase_10 AC 85 ms
27,744 KB
testcase_11 AC 89 ms
27,232 KB
testcase_12 AC 88 ms
27,232 KB
testcase_13 AC 85 ms
27,232 KB
testcase_14 AC 85 ms
27,232 KB
testcase_15 AC 84 ms
27,360 KB
testcase_16 AC 84 ms
27,232 KB
testcase_17 AC 84 ms
27,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,P=input,print
S=set(range(int(I())))
G=S.pop
while len(S)>1:
	x,y=G(),G()
	P("?",x,y)
	z=int(I())
	if x==z:P("!",y),exit(0)
	if y==z:P("!",x),exit(0)
P("!",G())
0