結果
| 問題 | No.3519 A/B問題 |
| コンテスト | |
| ユーザー |
siganai
|
| 提出日時 | 2026-05-01 21:27:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 190 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 73,120 KB |
| 平均クエリ数 | 106.00 |
| 最終ジャッジ日時 | 2026-05-01 21:27:52 |
| 合計ジャッジ時間 | 4,726 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 WA * 15 |
ソースコード
ans = 0
for i in range(105):
print('?',1,2 ** i,flush=True)
s = input()
if s == '=' or s == '>':
ans += 2 ** i
print("!",ans,flush=True)
siganai