結果

問題 No.2420 Simple Problem
ユーザー iseeisee
提出日時 2023-08-12 14:13:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,294 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 184,576 KB
最終ジャッジ日時 2024-11-19 17:57:54
合計ジャッジ時間 85,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,136 KB
testcase_01 AC 1,576 ms
177,536 KB
testcase_02 AC 90 ms
81,408 KB
testcase_03 AC 637 ms
171,520 KB
testcase_04 TLE -
testcase_05 AC 1,960 ms
182,400 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 45 ms
55,680 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 43 ms
53,760 KB
testcase_33 AC 1,524 ms
184,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

def naive(A, B):
    ng = -1
    ok = (A+B)*2
    while abs(ng-ok) > 1:
        mid = (ok+ng)//2
        if mid*mid-A-B > 0 and 4*A*B < (mid*mid-A-B)**2:  # ここ頑張る
            ok = mid
        else:
            ng = mid
    return ok

def isqrt(n):
    # n <= X^2 なる最小の X を求める
    ng = 0
    ok = n*2
    while abs(ng-ok) > 1:
        mid = (ok+ng)//2
        if n <= mid*mid : # ここ頑張る
            ok = mid
        else:
            ng = mid
    return ok

def solve(A, B):
    # vA + vB < X
    # A + 2vAB + B < X2
    # 2vAB < X2 - A - B =: C
    # 4AB < C2
    iseq = True
    C = isqrt(4*A*B)
    iseq &= 4*A*B == C * C
    X = isqrt(C+A+B)
    iseq &= C+A+B == X * X
    return X+iseq

def main():
    # 入力
    N = int(input())
    for _ in range(N):
        A, B = map(int, input().split())
        # 計算・出力
        ans = naive(A, B)
        print(ans)

if __name__ == "__main__":
    main()
    from random import randint
    # for _ in range(10000):
    #     A = randint(1, 10**9)
    #     B = randint(1, 10**9)
    #     ans1 = naive(A, B)
    #     ans2 = solve(A, B)
    #     if ans1 != ans2:
    #         print(A, B)
    #         print(ans1, ans2)
    #         break
0