結果

問題 No.514 宝探し3
ユーザー 👑 KazunKazun
提出日時 2020-11-16 04:34:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 70,280 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-17 07:23:22
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,824 KB
testcase_01 AC 60 ms
69,800 KB
testcase_02 AC 59 ms
68,800 KB
testcase_03 AC 61 ms
68,952 KB
testcase_04 AC 60 ms
69,076 KB
testcase_05 AC 60 ms
69,420 KB
testcase_06 AC 60 ms
69,220 KB
testcase_07 AC 60 ms
70,280 KB
testcase_08 AC 60 ms
69,340 KB
testcase_09 AC 60 ms
69,304 KB
testcase_10 AC 61 ms
69,288 KB
testcase_11 AC 60 ms
68,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def quest(x,y):
    print(x,y,flush=True)
    d=int(input())
    if d:
        return d
    else:
        exit(0)

M=10**9
p=quest(0,0);q=quest(M,0)
x,y=(M+p-q)//2,(-M+p+q)//2
quest(x,y)
0