結果

問題 No.2962 Sum Bomb Bomber
ユーザー ArcAkiArcAki
提出日時 2024-11-16 16:39:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,004 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 70,504 KB
平均クエリ数 191.00
最終ジャッジ日時 2024-11-16 16:40:24
合計ジャッジ時間 13,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
69,864 KB
testcase_01 AC 150 ms
70,000 KB
testcase_02 AC 146 ms
70,248 KB
testcase_03 AC 145 ms
70,120 KB
testcase_04 AC 148 ms
70,120 KB
testcase_05 AC 144 ms
69,736 KB
testcase_06 AC 129 ms
69,864 KB
testcase_07 AC 149 ms
69,608 KB
testcase_08 AC 147 ms
69,992 KB
testcase_09 AC 143 ms
69,864 KB
testcase_10 AC 146 ms
69,608 KB
testcase_11 AC 146 ms
69,992 KB
testcase_12 AC 149 ms
69,992 KB
testcase_13 AC 136 ms
70,376 KB
testcase_14 AC 146 ms
69,864 KB
testcase_15 AC 128 ms
69,992 KB
testcase_16 AC 143 ms
69,352 KB
testcase_17 AC 146 ms
69,864 KB
testcase_18 AC 147 ms
70,120 KB
testcase_19 AC 142 ms
70,504 KB
testcase_20 AC 140 ms
69,992 KB
testcase_21 AC 151 ms
70,248 KB
testcase_22 AC 150 ms
70,248 KB
testcase_23 AC 141 ms
69,864 KB
testcase_24 AC 141 ms
70,120 KB
testcase_25 AC 131 ms
70,120 KB
testcase_26 AC 140 ms
70,120 KB
testcase_27 AC 154 ms
69,608 KB
testcase_28 AC 173 ms
70,504 KB
testcase_29 AC 142 ms
69,992 KB
testcase_30 AC 138 ms
69,992 KB
testcase_31 AC 125 ms
70,248 KB
testcase_32 AC 139 ms
69,480 KB
testcase_33 AC 141 ms
69,736 KB
testcase_34 AC 149 ms
70,120 KB
testcase_35 AC 140 ms
70,120 KB
testcase_36 AC 167 ms
69,608 KB
testcase_37 AC 150 ms
69,608 KB
testcase_38 AC 142 ms
70,120 KB
testcase_39 AC 142 ms
69,736 KB
testcase_40 AC 142 ms
69,984 KB
testcase_41 AC 143 ms
69,976 KB
testcase_42 AC 148 ms
69,856 KB
testcase_43 AC 137 ms
69,352 KB
testcase_44 AC 144 ms
69,864 KB
testcase_45 AC 141 ms
70,248 KB
testcase_46 AC 139 ms
69,608 KB
testcase_47 AC 142 ms
70,240 KB
testcase_48 AC 143 ms
69,976 KB
testcase_49 AC 144 ms
70,012 KB
testcase_50 AC 150 ms
70,504 KB
testcase_51 AC 127 ms
70,496 KB
testcase_52 AC 144 ms
70,112 KB
testcase_53 AC 129 ms
70,240 KB
testcase_54 AC 130 ms
69,984 KB
testcase_55 AC 159 ms
69,984 KB
testcase_56 AC 125 ms
70,432 KB
testcase_57 AC 144 ms
69,856 KB
testcase_58 AC 153 ms
69,532 KB
testcase_59 AC 145 ms
70,112 KB
testcase_60 AC 145 ms
69,924 KB
testcase_61 AC 144 ms
69,984 KB
testcase_62 AC 134 ms
69,808 KB
testcase_63 AC 137 ms
69,856 KB
testcase_64 AC 144 ms
70,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    l, r = -100000001, 100000001
    while l+2 < r:
        m1 = l+(r-l)//3
        m2 = r-(r-l)//3
        print(1, m1, 0, flush=True)
        d1 = int(input())
        print(1, m2, 0, flush=True)
        d2 = int(input())
        if d1 >= d2:
            l = m1
        else:
            r = m2
    mi, x = 1<<60, 0
    for i in range(l, r+1):
        print(1, i, 0, flush=True)
        z = int(input())
        if z < mi:
            mi, x = z, i
    l, r = -100000001, 100000001
    while l+2 < r:
        m1 = l+(r-l)//3
        m2 = r-(r-l)//3
        print(1, x, m1, flush=True)
        d1 = int(input())
        print(1, x, m2, flush=True)
        d2 = int(input())
        if d1 >= d2:
            l = m1
        else:
            r = m2
    mi, y = 1<<60, 0
    for i in range(l, r+1):
        print(1, x, i, flush=True)
        z = int(input())
        if z < mi:
            mi, y = z, i
    print(2, x, y, flush=True)


if __name__ == "__main__":
    main()
0