結果
| 問題 |
No.2357 Guess the Function
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 WA * 3 |
ソースコード
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