結果

問題 No.2420 Simple Problem
ユーザー noriocnorioc
提出日時 2023-08-12 16:57:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-20 06:49:08
合計ジャッジ時間 24,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 345 ms
75,904 KB
testcase_02 AC 81 ms
73,984 KB
testcase_03 AC 172 ms
76,336 KB
testcase_04 AC 625 ms
76,416 KB
testcase_05 AC 423 ms
76,060 KB
testcase_06 AC 739 ms
75,900 KB
testcase_07 AC 745 ms
75,992 KB
testcase_08 AC 746 ms
75,776 KB
testcase_09 AC 757 ms
75,776 KB
testcase_10 AC 742 ms
75,776 KB
testcase_11 AC 728 ms
76,032 KB
testcase_12 AC 736 ms
75,912 KB
testcase_13 AC 753 ms
76,284 KB
testcase_14 AC 752 ms
76,032 KB
testcase_15 AC 753 ms
76,544 KB
testcase_16 AC 757 ms
76,032 KB
testcase_17 AC 729 ms
75,776 KB
testcase_18 AC 739 ms
76,032 KB
testcase_19 AC 742 ms
76,032 KB
testcase_20 AC 730 ms
76,340 KB
testcase_21 AC 744 ms
75,900 KB
testcase_22 AC 738 ms
76,208 KB
testcase_23 AC 745 ms
76,216 KB
testcase_24 AC 737 ms
76,032 KB
testcase_25 AC 727 ms
76,416 KB
testcase_26 AC 41 ms
52,736 KB
testcase_27 AC 600 ms
76,032 KB
testcase_28 AC 584 ms
75,776 KB
testcase_29 AC 593 ms
75,988 KB
testcase_30 AC 621 ms
76,052 KB
testcase_31 AC 594 ms
75,792 KB
testcase_32 AC 39 ms
51,840 KB
testcase_33 AC 341 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


# 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