結果

問題 No.2962 Sum Bomb Bomber
ユーザー lif4635lif4635
提出日時 2024-11-16 16:06:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,507 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 85,352 KB
平均クエリ数 227.89
最終ジャッジ日時 2024-11-16 16:06:56
合計ジャッジ時間 17,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 RE -
testcase_31 WA -
testcase_32 RE -
testcase_33 RE -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 WA -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 WA -
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 RE -
testcase_58 RE -
testcase_59 WA -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""input"""
#int-input
# input = sys.stdin.readline
def II(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(MI())
#str-input
def SI(): return input()
def MSI(): return input().split()
def SI_L(): return list(SI())
def SI_LI(): return list(map(int, SI()))
#multiple-input
def LLI(n): return [LI() for _ in range(n)]
def LSI(n): return [SI() for _ in range(n)]
#1-indexを0-indexでinput
def MI_1(): return map(lambda x:int(x)-1, input().split())
def TI_1(): return tuple(MI_1())
def LI_1(): return list(MI_1())
from bisect import bisect_left,bisect_right
inf = 1<<60

def tri_float(comparison, l = -10**8, r = 10**8):
    while abs(r - l)/abs(r) > error and abs(r - l) > error:
        l2 = (l*2+r)/3
        r2 = (l+r*2)/3
        if comparison(l2) > comparison(r2):
            l = l2
        else:
            r = r2
    return l2, comparison(l2)


const = 10
n = II()
def solve(x):
    print(1,x,0)
    return II()

l = -const
r = const
while abs(r - l) > 1:
    l2 = (l*2+r)//3
    r2 = (l+r*2)//3
    resl2 = solve(l2)
    resr2 = solve(r2)
    if resl2 > resr2:
        l = l2
    elif resl2 < resr2:
        r = r2
    else:
        break

ansx = l

def solve2(y):
    print(1,0,y)
    return II()

l = -const
r = const
while abs(r - l) > 1:
    l2 = (l*2+r)//3
    r2 = (l+r*2)//3
    resl2 = solve2(l2)
    resr2 = solve2(r2)
    if resl2 > resr2:
        l = l2
    elif resl2 < resr2:
        r = r2
    else:
        break
    
ansy = l

print(2,ansx,ansy)
0