結果

問題 No.2962 Sum Bomb Bomber
ユーザー ニックネームニックネーム
提出日時 2024-11-16 16:15:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,736 KB
平均クエリ数 183.55
最終ジャッジ日時 2024-11-16 16:15:28
合計ジャッジ時間 12,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n = int(input())
lx = -10**8; 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; 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,min(lx+1,rx-1),min(ly+1,+ry-1))
0