結果

問題 No.2420 Simple Problem
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-08-12 13:59:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2024-11-19 16:59:33
合計ジャッジ時間 20,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,968 KB
testcase_01 AC 284 ms
76,108 KB
testcase_02 AC 61 ms
70,160 KB
testcase_03 AC 152 ms
76,204 KB
testcase_04 AC 512 ms
76,600 KB
testcase_05 AC 326 ms
76,116 KB
testcase_06 AC 586 ms
76,184 KB
testcase_07 AC 602 ms
76,320 KB
testcase_08 AC 622 ms
76,112 KB
testcase_09 AC 587 ms
76,032 KB
testcase_10 AC 587 ms
76,148 KB
testcase_11 AC 593 ms
75,896 KB
testcase_12 AC 596 ms
76,388 KB
testcase_13 AC 595 ms
75,956 KB
testcase_14 AC 636 ms
76,104 KB
testcase_15 AC 603 ms
76,544 KB
testcase_16 AC 609 ms
76,288 KB
testcase_17 AC 612 ms
76,392 KB
testcase_18 AC 595 ms
76,176 KB
testcase_19 AC 619 ms
75,848 KB
testcase_20 AC 608 ms
76,000 KB
testcase_21 AC 623 ms
76,544 KB
testcase_22 AC 611 ms
76,140 KB
testcase_23 AC 613 ms
76,036 KB
testcase_24 AC 611 ms
76,144 KB
testcase_25 AC 621 ms
76,160 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 483 ms
76,032 KB
testcase_28 AC 485 ms
76,108 KB
testcase_29 AC 502 ms
76,160 KB
testcase_30 AC 497 ms
76,416 KB
testcase_31 AC 509 ms
76,100 KB
testcase_32 AC 35 ms
52,944 KB
testcase_33 AC 279 ms
76,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N):
    A, B = map(int, input().split())

    ng = 0
    ok = 100000
    while ok - ng > 1:
        mid = (ok + ng) // 2
        if 4 * A * B < (mid * mid - A - B) * (mid * mid - A - B) and mid * mid - A - B > 0:
            ok = mid
        else:
            ng = mid
    print(ok)
0