結果

問題 No.2420 Simple Problem
ユーザー noriocnorioc
提出日時 2023-08-12 16:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 76,668 KB
最終ジャッジ日時 2024-11-20 06:50:48
合計ジャッジ時間 24,273 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 349 ms
76,232 KB
testcase_02 AC 73 ms
73,728 KB
testcase_03 AC 171 ms
76,032 KB
testcase_04 AC 630 ms
76,160 KB
testcase_05 AC 408 ms
76,032 KB
testcase_06 AC 725 ms
76,452 KB
testcase_07 AC 744 ms
76,288 KB
testcase_08 AC 730 ms
75,904 KB
testcase_09 AC 734 ms
76,032 KB
testcase_10 AC 731 ms
76,392 KB
testcase_11 AC 729 ms
76,284 KB
testcase_12 AC 729 ms
76,032 KB
testcase_13 AC 733 ms
76,288 KB
testcase_14 AC 726 ms
76,160 KB
testcase_15 AC 731 ms
76,032 KB
testcase_16 AC 740 ms
76,300 KB
testcase_17 AC 756 ms
76,032 KB
testcase_18 AC 738 ms
75,904 KB
testcase_19 AC 744 ms
75,776 KB
testcase_20 AC 733 ms
76,280 KB
testcase_21 AC 729 ms
76,544 KB
testcase_22 AC 736 ms
76,024 KB
testcase_23 AC 731 ms
76,288 KB
testcase_24 AC 729 ms
76,032 KB
testcase_25 AC 745 ms
76,032 KB
testcase_26 AC 40 ms
52,608 KB
testcase_27 AC 604 ms
76,160 KB
testcase_28 AC 618 ms
76,668 KB
testcase_29 AC 589 ms
76,196 KB
testcase_30 AC 595 ms
76,032 KB
testcase_31 AC 592 ms
76,160 KB
testcase_32 AC 39 ms
51,456 KB
testcase_33 AC 340 ms
76,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def issatisfy(m, a, b) -> bool:
    s = m**2 - (a + b)
    if s <= 0: return False
    return 4*a*b < s**2


# INF = 1 << 60
INF = 10 ** 5
N = int(input())
for _ in range(N):
    A, B = map(int, input().split())

    lo = 1
    hi = INF
    ans = INF
    while lo <= hi:
        m = (lo + hi) // 2
        if issatisfy(m, A, B):
            ans = min(ans, m)
            hi = m - 1
        else:
            lo = m + 1
    print(ans)
0