結果

問題 No.2962 Sum Bomb Bomber
ユーザー lif4635lif4635
提出日時 2024-11-16 16:09:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,548 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 169,172 KB
平均クエリ数 4.32
最終ジャッジ日時 2024-11-16 16:11:49
合計ジャッジ時間 153,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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)

from functools import cache

const = 10
n = II()
@cache
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
@cache
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