結果

問題 No.2420 Simple Problem
ユーザー Basin-BugBasin-Bug
提出日時 2024-09-17 00:48:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,652 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-17 00:49:36
合計ジャッジ時間 44,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,584 KB
testcase_01 AC 665 ms
76,288 KB
testcase_02 AC 64 ms
76,136 KB
testcase_03 AC 268 ms
76,248 KB
testcase_04 AC 1,232 ms
77,212 KB
testcase_05 AC 842 ms
76,404 KB
testcase_06 AC 1,486 ms
77,036 KB
testcase_07 AC 1,508 ms
77,188 KB
testcase_08 AC 1,546 ms
77,360 KB
testcase_09 AC 1,533 ms
77,076 KB
testcase_10 AC 1,479 ms
77,488 KB
testcase_11 AC 1,539 ms
77,348 KB
testcase_12 AC 1,526 ms
77,380 KB
testcase_13 AC 1,536 ms
76,960 KB
testcase_14 AC 1,570 ms
77,068 KB
testcase_15 AC 1,588 ms
77,092 KB
testcase_16 AC 1,547 ms
76,820 KB
testcase_17 AC 1,527 ms
76,972 KB
testcase_18 AC 1,565 ms
77,568 KB
testcase_19 AC 1,504 ms
76,972 KB
testcase_20 AC 1,652 ms
77,072 KB
testcase_21 AC 1,603 ms
77,224 KB
testcase_22 AC 1,558 ms
77,144 KB
testcase_23 AC 1,498 ms
77,024 KB
testcase_24 AC 1,472 ms
76,864 KB
testcase_25 AC 1,580 ms
77,500 KB
testcase_26 AC 43 ms
60,392 KB
testcase_27 AC 1,178 ms
76,904 KB
testcase_28 AC 1,210 ms
77,012 KB
testcase_29 AC 1,270 ms
76,812 KB
testcase_30 AC 1,263 ms
77,232 KB
testcase_31 AC 1,208 ms
76,760 KB
testcase_32 AC 33 ms
52,428 KB
testcase_33 AC 627 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for i in range(N):
    a, b = map(int, input().split())
    ok = 10 ** 18
    ng = 2
    left = 4 * a * b

    while ng + 1 < ok:
        mid = (ok + ng) // 2
        mid_squared = mid * mid
        subright = mid_squared - a - b

        if subright <= 0:
            ng = mid
        else:
            right = subright * subright
            if left < right:
                ok = mid
            else:
                ng = mid

    print(ok)
0