結果

問題 No.2357 Guess the Function
ユーザー hiro1729hiro1729
提出日時 2024-08-11 17:05:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 69,080 KB
平均クエリ数 2.82
最終ジャッジ日時 2024-08-11 17:05:19
合計ジャッジ時間 2,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,576 KB
testcase_01 WA -
testcase_02 AC 53 ms
68,056 KB
testcase_03 AC 56 ms
69,080 KB
testcase_04 AC 53 ms
68,056 KB
testcase_05 WA -
testcase_06 AC 53 ms
68,440 KB
testcase_07 AC 57 ms
68,312 KB
testcase_08 WA -
testcase_09 AC 55 ms
68,056 KB
testcase_10 AC 54 ms
68,056 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(1, 100):
		if (t + 100) % B == x:
			print('!', t, B, flush = True)
			break
0