結果

問題 No.2420 Simple Problem
ユーザー naut3naut3
提出日時 2023-09-02 13:46:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 77,372 KB
最終ジャッジ日時 2024-06-11 20:25:56
合計ジャッジ時間 41,073 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 59 ms
76,296 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 734 ms
76,188 KB
testcase_06 WA -
testcase_07 AC 1,403 ms
76,724 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,499 ms
76,744 KB
testcase_14 WA -
testcase_15 AC 1,360 ms
77,248 KB
testcase_16 WA -
testcase_17 AC 1,444 ms
76,504 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,353 ms
77,136 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,114 ms
76,844 KB
testcase_28 AC 1,089 ms
76,564 KB
testcase_29 AC 1,098 ms
76,576 KB
testcase_30 AC 1,097 ms
76,684 KB
testcase_31 AC 1,108 ms
76,676 KB
testcase_32 AC 34 ms
53,000 KB
testcase_33 AC 577 ms
76,448 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 A * B < ((m * m - (A + B)) // 2) ** 2:
                    ok = m
                else:
                    ng = m

        print(ok)

    return 0


main()
0