結果

問題 No.2252 Find Zero
ユーザー 👑 p-adicp-adic
提出日時 2023-05-21 21:13:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 121 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,752 KB
平均クエリ数 10.67
最終ジャッジ日時 2024-06-01 12:41:55
合計ジャッジ時間 3,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
27,208 KB
testcase_01 AC 83 ms
27,464 KB
testcase_02 AC 85 ms
27,464 KB
testcase_03 AC 84 ms
27,080 KB
testcase_04 AC 84 ms
27,744 KB
testcase_05 AC 85 ms
27,112 KB
testcase_06 AC 85 ms
27,104 KB
testcase_07 AC 83 ms
27,368 KB
testcase_08 AC 88 ms
27,360 KB
testcase_09 AC 88 ms
27,104 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 85 ms
27,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,P=input,print
N=int(I())-1
x=y=0
while N>0:
	if N%2:
		P("?",x,y)
		x=int(I())
	P("?",y,y)
	y,N=int(I()),N//2,
P("!",x)
0