結果

問題 No.2962 Sum Bomb Bomber
ユーザー Iroha_3856Iroha_3856
提出日時 2024-11-16 15:52:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 604 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 84,704 KB
平均クエリ数 201.49
最終ジャッジ日時 2024-11-16 15:52:36
合計ジャッジ時間 14,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 121 ms
69,096 KB
testcase_04 RE -
testcase_05 AC 126 ms
69,352 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 114 ms
68,840 KB
testcase_12 AC 125 ms
69,480 KB
testcase_13 AC 109 ms
68,328 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 122 ms
68,584 KB
testcase_17 AC 128 ms
68,448 KB
testcase_18 AC 123 ms
69,096 KB
testcase_19 AC 122 ms
69,608 KB
testcase_20 AC 113 ms
68,612 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 139 ms
69,224 KB
testcase_24 AC 132 ms
69,376 KB
testcase_25 AC 116 ms
68,840 KB
testcase_26 AC 130 ms
68,968 KB
testcase_27 RE -
testcase_28 AC 129 ms
68,840 KB
testcase_29 AC 124 ms
68,840 KB
testcase_30 RE -
testcase_31 AC 109 ms
68,968 KB
testcase_32 RE -
testcase_33 AC 127 ms
69,480 KB
testcase_34 AC 133 ms
69,608 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 137 ms
68,840 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 132 ms
68,968 KB
testcase_42 AC 133 ms
69,096 KB
testcase_43 RE -
testcase_44 AC 124 ms
68,840 KB
testcase_45 AC 126 ms
69,096 KB
testcase_46 RE -
testcase_47 AC 132 ms
69,096 KB
testcase_48 RE -
testcase_49 AC 122 ms
69,480 KB
testcase_50 RE -
testcase_51 AC 115 ms
68,960 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 AC 134 ms
69,088 KB
testcase_58 AC 126 ms
69,344 KB
testcase_59 AC 129 ms
68,704 KB
testcase_60 AC 136 ms
69,344 KB
testcase_61 AC 131 ms
69,088 KB
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

lx, rx = -10**8, 10**8
while rx != lx:
    l, r = (lx*2+rx)//3, (lx+rx*2)//3
    print(1, l, 0)
    resl = int(input())
    print(1, r, 0)
    resr = int(input())
    if resl < resr:
        rx = r
    elif resl == resr:
        rx = r
        lx = l
    else:
        lx = l
ansx = lx
lx, rx = -10**8, 10**8
while rx != lx:
    l, r = (lx*2+rx)//3, (lx+rx*2)//3
    print(1, ansx, l)
    resl = int(input())
    print(1, ansx, r)
    resr = int(input())
    if resl < resr:
        rx = r
    elif resl == resr:
        rx = r
        lx = l
    else:
        lx = l
print(2, ansx, lx)
0