結果
| 問題 | No.3519 A/B問題 |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2025-02-16 12:44:34 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 395 bytes |
| 記録 | |
| コンパイル時間 | 171 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 91,680 KB |
| 平均クエリ数 | 648.43 |
| 最終ジャッジ日時 | 2026-05-01 21:01:33 |
| 合計ジャッジ時間 | 8,957 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 20 |
ソースコード
DIGIT = 100
ans = 0
for i in range(DIGIT - 1, -1, -1):
m = 10**i
for i in range(9):
n = i + 1
print("?", n, m)
match input():
case "<":
continue
case "=":
ans = 10 * ans + n
break
case ">":
ans = 10 * ans + i
break
print("!", ans)