結果

問題 No.514 宝探し3
ユーザー nanaenanae
提出日時 2017-05-05 22:49:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,736 KB
平均クエリ数 2.00
最終ジャッジ日時 2024-07-16 13:02:04
合計ジャッジ時間 2,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys

lim = 10**5

def solve():
    print(0, 0, flush=True)
    ans1 = int(input())

    if ans1 == 0:
        return

    if ans1 <= lim:
        print(0, ans1, flush=True)

        ans2 = int(input())

        ans2 //= 2

        if ans2 == 0:
            return

        print(ans2, ans1 - ans2, flush=True)

        ans3 = int(input())

        # assert ans3 == 0

        return
    elif ans1 < 2*lim:
        print(ans1 - lim, lim, flush=True)

        ans2 = int(input())
        ans2 //= 2

        if ans2 == 0:
            return

        print(ans1 - lim + ans2, lim - ans2, flush=True)

        ans3 = int(input())

        # assert ans3 == 0

        return
    else:
        print(lim, lim, flush=True)

        ans2 = int(input())

        # assert ans2 == 0

        return

if __name__ == '__main__':
    solve()
0