結果
問題 | No.514 宝探し3 |
ユーザー | JunOnuma |
提出日時 | 2017-05-25 14:17:45 |
言語 | Python2 (2.7.18) |
結果 |
MLE
|
実行時間 | - |
コード長 | 366 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 826,336 KB |
平均クエリ数 | 0.25 |
最終ジャッジ日時 | 2024-07-16 13:47:42 |
合計ジャッジ時間 | 2,958 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
24,976 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
import sys print 0,0 sys.stdout.flush() d1 = int(raw_input()) if d1 == 0: sys.exit() print 1000000000,0 sys.stdout.flush() d2 = int(raw_input()) if d2 == 0: sys.exit() for x in range(min(1000000001,d1+1)): y = d1 - x d = abs(1000000000 - x) + y if d == d2: print x,y sys.stdout.flush() d3 = int(raw_input()) break