結果

問題 No.2962 Sum Bomb Bomber
ユーザー 👑 rin204rin204
提出日時 2024-11-16 21:49:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,008 KB
平均クエリ数 214.20
最終ジャッジ日時 2024-11-16 21:49:43
合計ジャッジ時間 14,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
76,008 KB
testcase_01 AC 165 ms
75,240 KB
testcase_02 AC 161 ms
75,104 KB
testcase_03 AC 165 ms
74,984 KB
testcase_04 AC 167 ms
75,368 KB
testcase_05 AC 167 ms
75,368 KB
testcase_06 AC 143 ms
75,112 KB
testcase_07 AC 165 ms
75,240 KB
testcase_08 AC 161 ms
75,360 KB
testcase_09 AC 167 ms
75,368 KB
testcase_10 AC 166 ms
75,368 KB
testcase_11 AC 170 ms
74,984 KB
testcase_12 AC 166 ms
75,240 KB
testcase_13 AC 154 ms
75,496 KB
testcase_14 AC 189 ms
75,112 KB
testcase_15 AC 149 ms
74,728 KB
testcase_16 AC 163 ms
74,984 KB
testcase_17 AC 164 ms
74,984 KB
testcase_18 AC 162 ms
75,496 KB
testcase_19 AC 157 ms
75,496 KB
testcase_20 AC 157 ms
75,752 KB
testcase_21 AC 140 ms
75,496 KB
testcase_22 AC 155 ms
75,624 KB
testcase_23 AC 163 ms
75,752 KB
testcase_24 AC 166 ms
75,752 KB
testcase_25 AC 147 ms
75,752 KB
testcase_26 AC 162 ms
75,624 KB
testcase_27 AC 161 ms
75,496 KB
testcase_28 AC 164 ms
75,368 KB
testcase_29 AC 161 ms
75,112 KB
testcase_30 AC 160 ms
75,880 KB
testcase_31 AC 144 ms
75,368 KB
testcase_32 AC 166 ms
75,240 KB
testcase_33 AC 159 ms
75,368 KB
testcase_34 AC 167 ms
75,496 KB
testcase_35 AC 164 ms
75,112 KB
testcase_36 AC 165 ms
75,496 KB
testcase_37 AC 172 ms
75,752 KB
testcase_38 AC 173 ms
75,368 KB
testcase_39 AC 161 ms
75,368 KB
testcase_40 AC 160 ms
75,752 KB
testcase_41 AC 160 ms
74,856 KB
testcase_42 AC 175 ms
74,968 KB
testcase_43 AC 141 ms
75,112 KB
testcase_44 AC 159 ms
75,624 KB
testcase_45 AC 159 ms
75,368 KB
testcase_46 AC 167 ms
75,616 KB
testcase_47 AC 165 ms
75,624 KB
testcase_48 AC 166 ms
75,240 KB
testcase_49 AC 165 ms
74,728 KB
testcase_50 AC 160 ms
75,112 KB
testcase_51 AC 142 ms
75,488 KB
testcase_52 AC 160 ms
75,360 KB
testcase_53 AC 143 ms
75,488 KB
testcase_54 AC 148 ms
75,352 KB
testcase_55 AC 146 ms
75,616 KB
testcase_56 AC 143 ms
74,976 KB
testcase_57 AC 170 ms
75,664 KB
testcase_58 AC 169 ms
74,848 KB
testcase_59 AC 167 ms
75,360 KB
testcase_60 AC 173 ms
75,360 KB
testcase_61 AC 166 ms
74,976 KB
testcase_62 AC 160 ms
74,848 KB
testcase_63 AC 159 ms
75,232 KB
testcase_64 AC 161 ms
75,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(x, y):
    print(1, x, y, flush=True)
    global cnt
    return int(input())


n = int(input())
l = -(10**9)
r = 10**9
while r - l > 2:
    llr = (2 * l + r) // 3
    rrl = (l + 2 * r) // 3
    if ask(llr, 0) < ask(rrl, 0):
        r = rrl
    else:
        l = llr

mi = ask(l, 0)
x = l
for i in range(l + 1, r + 1):
    if ask(i, 0) < mi:
        mi = ask(i, 0)
        x = i


l = -(10**9)
r = 10**9
while r - l > 2:
    llr = (2 * l + r) // 3
    rrl = (l + 2 * r) // 3
    if ask(x, llr) < ask(x, rrl):
        r = rrl
    else:
        l = llr

mi = ask(x, l)
y = l
for i in range(l + 1, r + 1):
    if ask(x, i) < mi:
        mi = ask(x, i)
        y = i

print(2, x, y, flush=True)
0