結果

問題 No.513 宝探し2
ユーザー xkumiyuxkumiyu
提出日時 2018-06-15 19:02:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 195 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 10,536 KB
実行使用メモリ 24,444 KB
平均クエリ数 2.83
最終ジャッジ日時 2023-09-23 16:05:07
合計ジャッジ時間 3,393 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 38 ms
23,812 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def ask(x, y):
    print(x, y)
    d = int(input())
    if d == 0:
        sys.exit(0)
    return d


N = 10 ** 9
A = ask(0, 0)
B = ask(0, N)
X = (A + B - N) / 2
Y = A - X

ask(X, Y)
0