結果
| 問題 | No.3519 A/B問題 |
| コンテスト | |
| ユーザー |
ゼット
|
| 提出日時 | 2026-05-01 21:28:59 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 247 ms / 2,000 ms |
| + 2µs | |
| コード長 | 178 bytes |
| 記録 | |
| コンパイル時間 | 76 ms |
| コンパイル使用メモリ | 80,640 KB |
| 実行使用メモリ | 79,488 KB |
| 平均クエリ数 | 1001.00 |
| 最終ジャッジ日時 | 2026-09-16 16:17:48 |
| 合計ジャッジ時間 | 7,534 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
result=0
for x in range(99,-1,-1):
for i in range(10):
print('?',1,10**x,flush=True)
t=input()
if t=='>' or t=='=':
result+=10**x
print('!',result,flush=True)
ゼット