結果
問題 |
No.513 宝探し2
|
ユーザー |
![]() |
提出日時 | 2020-05-24 22:19:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 233 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 27,352 KB |
平均クエリ数 | 2.67 |
最終ジャッジ日時 | 2024-07-17 02:43:43 |
合計ジャッジ時間 | 1,799 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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)