結果

問題 No.2420 Simple Problem
ユーザー naut3naut3
提出日時 2023-09-02 13:50:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,747 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-05-25 11:14:28
合計ジャッジ時間 52,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 761 ms
76,532 KB
testcase_02 AC 66 ms
76,400 KB
testcase_03 AC 308 ms
76,400 KB
testcase_04 AC 1,395 ms
77,100 KB
testcase_05 AC 916 ms
76,688 KB
testcase_06 AC 1,737 ms
77,316 KB
testcase_07 AC 1,722 ms
77,344 KB
testcase_08 AC 1,725 ms
77,020 KB
testcase_09 AC 1,731 ms
77,392 KB
testcase_10 AC 1,742 ms
76,964 KB
testcase_11 AC 1,740 ms
77,448 KB
testcase_12 AC 1,739 ms
77,296 KB
testcase_13 AC 1,710 ms
77,272 KB
testcase_14 AC 1,716 ms
77,512 KB
testcase_15 AC 1,724 ms
77,216 KB
testcase_16 AC 1,740 ms
77,372 KB
testcase_17 AC 1,736 ms
77,144 KB
testcase_18 AC 1,742 ms
77,440 KB
testcase_19 AC 1,726 ms
77,284 KB
testcase_20 AC 1,739 ms
77,688 KB
testcase_21 AC 1,747 ms
77,112 KB
testcase_22 AC 1,713 ms
77,024 KB
testcase_23 AC 1,701 ms
77,292 KB
testcase_24 AC 1,718 ms
77,408 KB
testcase_25 AC 1,736 ms
77,484 KB
testcase_26 AC 39 ms
53,536 KB
testcase_27 AC 1,420 ms
77,016 KB
testcase_28 AC 1,418 ms
77,088 KB
testcase_29 AC 1,410 ms
77,164 KB
testcase_30 AC 1,412 ms
77,220 KB
testcase_31 AC 1,408 ms
76,952 KB
testcase_32 AC 37 ms
52,956 KB
testcase_33 AC 733 ms
76,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

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

        ng = 0
        ok = 1 << 20

        while ok - ng > 1:
            m = (ok + ng) // 2

            if m * m < A + B:
                ng = m
            else:
                if 4 * A * B < ((m * m - (A + B))) ** 2:
                    ok = m
                else:
                    ng = m

        print(ok)

    return 0


main()
0