結果
| 問題 | No.514 宝探し3 |
| コンテスト | |
| ユーザー |
takakin
|
| 提出日時 | 2020-05-24 22:22:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 114 ms / 2,000 ms |
| コード長 | 233 bytes |
| 記録 | |
| コンパイル時間 | 368 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 34,696 KB |
| 平均クエリ数 | 2.67 |
| 最終ジャッジ日時 | 2026-03-31 17:15:10 |
| 合計ジャッジ時間 | 2,680 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
import sys
input=lambda: sys.stdin.readline().rstrip()
print(0,0,flush=True)
d1=int(input())
if d1==0:
sys.exit
else:
print(d1,0,flush=True)
d2=int(input())
if d2==0:
sys.exit
else:
print(d1-d2//2,d2//2,flush=True)
takakin