結果

問題 No.514 宝探し3
ユーザー pekempeypekempey
提出日時 2017-05-05 22:36:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 69,208 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-16 12:56:43
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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

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

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

0