結果

問題 No.2420 Simple Problem
ユーザー noriocnorioc
提出日時 2023-08-12 16:59:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-20 06:52:29
合計ジャッジ時間 23,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 344 ms
76,160 KB
testcase_02 AC 73 ms
73,344 KB
testcase_03 AC 168 ms
76,508 KB
testcase_04 AC 621 ms
76,672 KB
testcase_05 AC 411 ms
75,904 KB
testcase_06 AC 722 ms
76,032 KB
testcase_07 AC 736 ms
75,904 KB
testcase_08 AC 735 ms
76,032 KB
testcase_09 AC 733 ms
75,904 KB
testcase_10 AC 750 ms
76,444 KB
testcase_11 AC 746 ms
76,288 KB
testcase_12 AC 735 ms
76,032 KB
testcase_13 AC 744 ms
76,236 KB
testcase_14 AC 745 ms
76,288 KB
testcase_15 AC 724 ms
76,380 KB
testcase_16 AC 737 ms
76,288 KB
testcase_17 AC 742 ms
76,416 KB
testcase_18 AC 732 ms
75,776 KB
testcase_19 AC 728 ms
76,416 KB
testcase_20 AC 731 ms
76,032 KB
testcase_21 AC 733 ms
76,544 KB
testcase_22 AC 732 ms
76,032 KB
testcase_23 AC 729 ms
76,432 KB
testcase_24 AC 736 ms
76,416 KB
testcase_25 AC 719 ms
76,416 KB
testcase_26 AC 40 ms
52,992 KB
testcase_27 AC 584 ms
76,544 KB
testcase_28 AC 604 ms
75,776 KB
testcase_29 AC 587 ms
76,288 KB
testcase_30 AC 586 ms
75,904 KB
testcase_31 AC 597 ms
76,208 KB
testcase_32 AC 38 ms
51,840 KB
testcase_33 AC 342 ms
76,032 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