結果

問題 No.2357 Guess the Function
ユーザー hiro1729
提出日時 2024-08-11 17:05:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 243 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 69,088 KB
平均クエリ数 2.91
最終ジャッジ日時 2024-08-11 17:05:49
合計ジャッジ時間 2,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

print('?', 100, flush = True)
x = int(input())
if x == 99:
	print('!', 99, 100, flush = True)
else:
	print('?', 99 - x, flush = True)
	B = int(input()) + 1
	for t in range(B):
		if (t + 100) % B == x:
			print('!', t, B, flush = True)
			break
0