結果
| 問題 | No.3519 A/B問題 |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2026-05-10 03:30:28 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 154 ms / 2,000 ms |
| コード長 | 260 bytes |
| 記録 | |
| コンパイル時間 | 508 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 35,468 KB |
| 平均クエリ数 | 348.60 |
| 最終ジャッジ日時 | 2026-05-10 03:30:40 |
| 合計ジャッジ時間 | 7,241 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
import sys
input = sys.stdin.readline
x=1
y=0
for i in range(350,-1,-1):
a=1
b=1<<i
print("?",a,b,flush=True)
ret=input().strip()
if ret=="=":
y+=b
break
elif ret==">":
y+=b
print("!",y//x,flush=True)
titia