結果

問題 No.2420 Simple Problem
ユーザー hotate29hotate29
提出日時 2023-08-15 05:23:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 805 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-11-23 09:53:26
合計ジャッジ時間 24,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 346 ms
76,032 KB
testcase_02 AC 73 ms
66,560 KB
testcase_03 AC 186 ms
75,904 KB
testcase_04 AC 644 ms
75,904 KB
testcase_05 AC 440 ms
75,904 KB
testcase_06 AC 805 ms
76,288 KB
testcase_07 AC 728 ms
75,904 KB
testcase_08 AC 732 ms
75,776 KB
testcase_09 AC 743 ms
76,032 KB
testcase_10 AC 729 ms
76,288 KB
testcase_11 AC 727 ms
75,776 KB
testcase_12 AC 739 ms
76,160 KB
testcase_13 AC 736 ms
76,032 KB
testcase_14 AC 744 ms
76,032 KB
testcase_15 AC 743 ms
76,416 KB
testcase_16 AC 747 ms
75,776 KB
testcase_17 AC 722 ms
75,776 KB
testcase_18 AC 753 ms
76,160 KB
testcase_19 AC 727 ms
76,032 KB
testcase_20 AC 725 ms
75,776 KB
testcase_21 AC 715 ms
75,904 KB
testcase_22 AC 728 ms
75,904 KB
testcase_23 AC 738 ms
76,288 KB
testcase_24 AC 732 ms
75,776 KB
testcase_25 AC 718 ms
76,160 KB
testcase_26 AC 42 ms
52,480 KB
testcase_27 AC 580 ms
75,776 KB
testcase_28 AC 583 ms
76,032 KB
testcase_29 AC 582 ms
75,776 KB
testcase_30 AC 572 ms
75,904 KB
testcase_31 AC 587 ms
76,288 KB
testcase_32 AC 42 ms
51,712 KB
testcase_33 AC 341 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    a, b = map(int, input().split())
    # 二分探索したくなる
    # 不等式からルートを消したい
    ok = 100000
    ng = -1
    while (ok - ng) > 1:
        mid = (ok + ng) // 2
        if 4 * a * b < (mid * mid - a - b) ** 2 and 0 < mid * mid - a - b:
            ok = mid
        else:
            ng = mid
    print(ok)
0