結果

問題 No.2420 Simple Problem
ユーザー 👑 rin204rin204
提出日時 2024-09-22 15:48:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-22 15:48:53
合計ジャッジ時間 27,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 419 ms
76,672 KB
testcase_02 AC 79 ms
74,112 KB
testcase_03 AC 217 ms
77,184 KB
testcase_04 AC 737 ms
76,672 KB
testcase_05 AC 519 ms
76,468 KB
testcase_06 AC 870 ms
77,036 KB
testcase_07 AC 864 ms
76,672 KB
testcase_08 AC 881 ms
76,588 KB
testcase_09 AC 850 ms
76,672 KB
testcase_10 AC 840 ms
77,056 KB
testcase_11 AC 820 ms
76,584 KB
testcase_12 AC 863 ms
77,036 KB
testcase_13 AC 824 ms
76,956 KB
testcase_14 AC 885 ms
76,672 KB
testcase_15 AC 866 ms
76,800 KB
testcase_16 AC 808 ms
76,888 KB
testcase_17 AC 831 ms
76,764 KB
testcase_18 AC 844 ms
76,532 KB
testcase_19 AC 860 ms
76,824 KB
testcase_20 AC 840 ms
76,956 KB
testcase_21 AC 860 ms
76,544 KB
testcase_22 AC 880 ms
76,800 KB
testcase_23 AC 852 ms
77,184 KB
testcase_24 AC 848 ms
77,132 KB
testcase_25 AC 830 ms
76,928 KB
testcase_26 AC 41 ms
53,248 KB
testcase_27 AC 651 ms
77,056 KB
testcase_28 AC 683 ms
76,872 KB
testcase_29 AC 714 ms
76,840 KB
testcase_30 AC 737 ms
76,672 KB
testcase_31 AC 750 ms
76,664 KB
testcase_32 AC 38 ms
52,352 KB
testcase_33 AC 432 ms
76,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    a, b = map(int, input().split())

    def ok(x):
        if x**2 - a - b < 0:
            return False

        return 4 * a * b < (x**2 - a - b) ** 2

    l = 0
    r = 10**5
    while r - l > 1:
        mid = (l + r) // 2
        if ok(mid):
            r = mid
        else:
            l = mid

    print(r)


for _ in range(int(input())):
    solve()
0