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