結果

問題 No.2357 Guess the Function
ユーザー hiro1729hiro1729
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
69,088 KB
testcase_01 AC 51 ms
68,568 KB
testcase_02 AC 53 ms
68,312 KB
testcase_03 AC 53 ms
68,056 KB
testcase_04 AC 55 ms
67,928 KB
testcase_05 AC 59 ms
68,568 KB
testcase_06 AC 51 ms
68,184 KB
testcase_07 AC 55 ms
68,568 KB
testcase_08 AC 59 ms
68,824 KB
testcase_09 AC 51 ms
68,312 KB
testcase_10 AC 53 ms
68,824 KB
権限があれば一括ダウンロードができます

ソースコード

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