結果

問題 No.513 宝探し2
ユーザー pekempeypekempey
提出日時 2017-05-05 22:35:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 68,720 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-17 00:57:24
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
68,312 KB
testcase_01 AC 57 ms
67,672 KB
testcase_02 AC 58 ms
68,720 KB
testcase_03 AC 58 ms
68,184 KB
testcase_04 AC 61 ms
68,440 KB
testcase_05 AC 56 ms
68,568 KB
testcase_06 AC 58 ms
68,056 KB
testcase_07 AC 58 ms
68,184 KB
testcase_08 AC 60 ms
68,440 KB
testcase_09 AC 58 ms
68,056 KB
testcase_10 AC 68 ms
68,440 KB
testcase_11 AC 58 ms
68,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

print('0 0')
sys.stdout.flush()
left = int(input())
if left == 0:
    sys.exit()

print('100000 0')
sys.stdout.flush()
right = int(input())
if right == 0:
    sys.exit()

y = (left + right - 100000) // 2
x = left - y
print(x, y)
sys.stdout.flush()

0