結果

問題 No.2962 Sum Bomb Bomber
ユーザー KudeKude
提出日時 2024-11-16 15:39:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 69,608 KB
平均クエリ数 111.52
最終ジャッジ日時 2024-11-16 15:40:14
合計ジャッジ時間 12,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
68,840 KB
testcase_01 AC 136 ms
69,096 KB
testcase_02 AC 144 ms
69,352 KB
testcase_03 AC 136 ms
68,840 KB
testcase_04 AC 136 ms
68,968 KB
testcase_05 AC 137 ms
69,480 KB
testcase_06 AC 122 ms
68,968 KB
testcase_07 AC 139 ms
68,968 KB
testcase_08 AC 136 ms
69,352 KB
testcase_09 AC 141 ms
68,840 KB
testcase_10 AC 135 ms
68,712 KB
testcase_11 AC 128 ms
69,608 KB
testcase_12 AC 131 ms
69,352 KB
testcase_13 AC 123 ms
69,480 KB
testcase_14 AC 132 ms
68,968 KB
testcase_15 AC 118 ms
69,352 KB
testcase_16 AC 125 ms
68,712 KB
testcase_17 AC 143 ms
69,096 KB
testcase_18 AC 137 ms
68,968 KB
testcase_19 AC 127 ms
69,224 KB
testcase_20 AC 126 ms
68,968 KB
testcase_21 AC 120 ms
68,840 KB
testcase_22 AC 138 ms
69,224 KB
testcase_23 AC 132 ms
68,968 KB
testcase_24 AC 148 ms
68,968 KB
testcase_25 AC 116 ms
68,712 KB
testcase_26 AC 133 ms
68,968 KB
testcase_27 AC 136 ms
69,096 KB
testcase_28 AC 135 ms
68,840 KB
testcase_29 AC 126 ms
69,224 KB
testcase_30 AC 125 ms
68,840 KB
testcase_31 AC 116 ms
68,712 KB
testcase_32 AC 170 ms
68,712 KB
testcase_33 AC 132 ms
68,712 KB
testcase_34 AC 144 ms
68,712 KB
testcase_35 AC 132 ms
69,224 KB
testcase_36 AC 127 ms
69,352 KB
testcase_37 AC 137 ms
69,096 KB
testcase_38 AC 131 ms
69,096 KB
testcase_39 AC 150 ms
69,352 KB
testcase_40 AC 134 ms
69,128 KB
testcase_41 AC 131 ms
69,096 KB
testcase_42 AC 152 ms
68,712 KB
testcase_43 AC 122 ms
69,096 KB
testcase_44 AC 134 ms
69,352 KB
testcase_45 AC 137 ms
69,224 KB
testcase_46 AC 139 ms
69,224 KB
testcase_47 AC 133 ms
68,712 KB
testcase_48 AC 137 ms
69,096 KB
testcase_49 AC 139 ms
68,840 KB
testcase_50 AC 134 ms
68,840 KB
testcase_51 AC 122 ms
69,472 KB
testcase_52 AC 140 ms
68,960 KB
testcase_53 AC 119 ms
69,080 KB
testcase_54 AC 130 ms
68,960 KB
testcase_55 AC 119 ms
68,960 KB
testcase_56 AC 118 ms
69,216 KB
testcase_57 AC 134 ms
69,344 KB
testcase_58 AC 133 ms
69,112 KB
testcase_59 AC 138 ms
69,216 KB
testcase_60 AC 136 ms
69,344 KB
testcase_61 AC 147 ms
69,472 KB
testcase_62 AC 131 ms
69,088 KB
testcase_63 AC 139 ms
69,080 KB
testcase_64 AC 127 ms
68,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

xl = -10 ** 8 - 1
xr = 10 ** 8 + 1
while xr - xl > 2:
    c1 = (xl + xr) // 2
    c2 = c1 + 1
    print(1, c1, 0)
    d1 = int(input())
    print(1, c2, 0)
    d2 = int(input())
    if d1 < d2:
        xr = c2
    else:
        xl = c1
yl = -10 ** 8 - 1
yr = 10 ** 8 + 1
while yr - yl > 2:
    c1 = (yl + yr) // 2
    c2 = c1 + 1
    print(1, 0, c1)
    d1 = int(input())
    print(1, 0, c2)
    d2 = int(input())
    if d1 < d2:
        yr = c2
    else:
        yl = c1
print(2, xl + 1, yl + 1)
0