結果

問題 No.2420 Simple Problem
ユーザー lloyzlloyz
提出日時 2023-08-24 01:22:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,380 KB
最終ジャッジ日時 2024-06-01 22:45:05
合計ジャッジ時間 21,912 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,132 KB
testcase_01 AC 268 ms
76,016 KB
testcase_02 AC 49 ms
65,652 KB
testcase_03 AC 132 ms
76,292 KB
testcase_04 AC 474 ms
75,936 KB
testcase_05 AC 317 ms
76,088 KB
testcase_06 AC 575 ms
76,020 KB
testcase_07 AC 573 ms
75,956 KB
testcase_08 AC 577 ms
76,344 KB
testcase_09 AC 580 ms
76,312 KB
testcase_10 AC 578 ms
75,744 KB
testcase_11 AC 586 ms
76,236 KB
testcase_12 AC 586 ms
75,768 KB
testcase_13 AC 574 ms
76,012 KB
testcase_14 AC 583 ms
75,696 KB
testcase_15 AC 584 ms
76,380 KB
testcase_16 AC 577 ms
75,940 KB
testcase_17 AC 614 ms
76,316 KB
testcase_18 AC 571 ms
76,004 KB
testcase_19 AC 577 ms
75,904 KB
testcase_20 AC 583 ms
75,948 KB
testcase_21 AC 588 ms
75,944 KB
testcase_22 AC 571 ms
76,376 KB
testcase_23 AC 576 ms
75,888 KB
testcase_24 AC 580 ms
75,952 KB
testcase_25 AC 563 ms
75,904 KB
testcase_26 AC 32 ms
52,816 KB
testcase_27 AC 462 ms
76,084 KB
testcase_28 AC 502 ms
75,756 KB
testcase_29 AC 485 ms
75,932 KB
testcase_30 AC 476 ms
76,156 KB
testcase_31 AC 480 ms
76,052 KB
testcase_32 AC 33 ms
52,132 KB
testcase_33 AC 267 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b = map(int, input().split())
    ok = 70000
    ng = 2
    while ok - ng > 1:
        mid = (ok + ng) // 2
        res = mid * mid - a - b
        if res * res > 4 * a * b and mid * mid > a + b:
            ok = mid
        else:
            ng = mid
    print(ok)
0