結果

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

テストケース

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

ソースコード

diff #

I,P,E=input,print,exit
N=int(I())
y=0
if N==3:
	P("?",0,0)
	y=int(I())
	P("!",y*2%3),E(0)
if N==5:
	P("?",1,0)
	y=int(I())
	P("?",y,0)
	z=int(I())
	P("!",1-y if y<2 else y if z<1 else 9-y-z),E(0)
if N==7:
	P("?",1,0)
	y=int(I())
	P("?",y,0)
	z=int(I())
	P("?",z,y)
	w=int(I())
	P("!",1-y if y<2 else y if z<1 else z if w<1 else 20-y-z-w),E(0)
while N%2<1:
	P("?",y,y)
	y=int(I())
	N//=2
x,N=y,N-1
while N:
	if N%2:
		P("?",x,y)
		x=int(I())
	N=N//2
	if N:
		P("?",y,y)
		y=int(I())
P("!",x)
0