結果

問題 No.2962 Sum Bomb Bomber
ユーザー ニックネームニックネーム
提出日時 2024-11-16 16:18:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,736 KB
平均クエリ数 183.68
最終ジャッジ日時 2024-11-16 16:20:39
合計ジャッジ時間 12,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
27,376 KB
testcase_01 AC 140 ms
27,224 KB
testcase_02 AC 152 ms
27,352 KB
testcase_03 AC 134 ms
27,352 KB
testcase_04 AC 132 ms
27,352 KB
testcase_05 AC 132 ms
26,968 KB
testcase_06 AC 114 ms
26,840 KB
testcase_07 AC 135 ms
26,840 KB
testcase_08 AC 131 ms
27,344 KB
testcase_09 AC 139 ms
26,840 KB
testcase_10 AC 128 ms
27,224 KB
testcase_11 AC 130 ms
27,096 KB
testcase_12 AC 129 ms
27,096 KB
testcase_13 AC 123 ms
27,352 KB
testcase_14 AC 135 ms
27,352 KB
testcase_15 AC 115 ms
27,096 KB
testcase_16 AC 134 ms
27,224 KB
testcase_17 AC 133 ms
27,480 KB
testcase_18 AC 135 ms
27,088 KB
testcase_19 AC 134 ms
27,352 KB
testcase_20 AC 131 ms
27,736 KB
testcase_21 AC 117 ms
27,224 KB
testcase_22 AC 129 ms
27,224 KB
testcase_23 AC 139 ms
27,096 KB
testcase_24 AC 135 ms
27,480 KB
testcase_25 AC 121 ms
27,224 KB
testcase_26 AC 139 ms
27,096 KB
testcase_27 AC 130 ms
27,224 KB
testcase_28 AC 144 ms
26,968 KB
testcase_29 AC 135 ms
27,096 KB
testcase_30 AC 130 ms
26,968 KB
testcase_31 AC 119 ms
27,480 KB
testcase_32 AC 130 ms
27,096 KB
testcase_33 AC 133 ms
27,096 KB
testcase_34 AC 143 ms
27,352 KB
testcase_35 AC 138 ms
27,224 KB
testcase_36 AC 130 ms
27,480 KB
testcase_37 AC 143 ms
27,480 KB
testcase_38 AC 138 ms
27,352 KB
testcase_39 AC 140 ms
27,352 KB
testcase_40 AC 136 ms
27,352 KB
testcase_41 AC 135 ms
26,840 KB
testcase_42 AC 141 ms
27,232 KB
testcase_43 AC 124 ms
27,096 KB
testcase_44 AC 136 ms
27,480 KB
testcase_45 AC 135 ms
27,224 KB
testcase_46 AC 138 ms
27,480 KB
testcase_47 AC 141 ms
27,224 KB
testcase_48 AC 136 ms
26,840 KB
testcase_49 AC 145 ms
27,352 KB
testcase_50 AC 129 ms
27,344 KB
testcase_51 AC 106 ms
27,088 KB
testcase_52 AC 125 ms
27,344 KB
testcase_53 AC 113 ms
27,344 KB
testcase_54 AC 108 ms
26,832 KB
testcase_55 AC 106 ms
27,344 KB
testcase_56 AC 105 ms
27,216 KB
testcase_57 AC 146 ms
27,336 KB
testcase_58 AC 133 ms
27,080 KB
testcase_59 AC 123 ms
27,080 KB
testcase_60 AC 122 ms
26,952 KB
testcase_61 AC 137 ms
27,080 KB
testcase_62 AC 117 ms
27,344 KB
testcase_63 AC 119 ms
27,096 KB
testcase_64 AC 117 ms
27,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lx = -10**8-1; rx = 10**8+1
while rx-lx>2:
    ml = lx+(rx-lx)//3; mr = lx+(rx-lx)//3*2
    print(1,ml,0); p = int(input())
    print(1,mr,0); q = int(input())
    if p<q: rx = mr
    else: lx = ml
ly = -10**8-1; ry = 10**8+1
while ry-ly>2:
    ml = ly+(ry-ly)//3; mr = ly+(ry-ly)//3*2
    print(1,0,ml); p = int(input())
    print(1,0,mr); q = int(input())
    if p<q: ry = mr
    else: ly = ml
print(2,lx+1,ly+1)
0