結果
| 問題 | No.3518 座標当てゲーム |
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2026-05-01 21:21:36 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| コード長 | 108 bytes |
| 記録 | |
| コンパイル時間 | 180 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 71,840 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2026-05-01 21:21:40 |
| 合計ジャッジ時間 | 2,896 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
print('?', 0)
d0 = int(input())
print('?', 1)
d1 = int(input())
ans = d0 if d0 > d1 else -d0
print('!', ans)
Kude