結果

問題 No.2420 Simple Problem
ユーザー KudeKude
提出日時 2023-08-12 13:51:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 903 ms
コンパイル使用メモリ 81,748 KB
実行使用メモリ 76,516 KB
最終ジャッジ日時 2024-11-19 16:26:56
合計ジャッジ時間 21,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,012 KB
testcase_01 AC 303 ms
75,908 KB
testcase_02 AC 62 ms
66,004 KB
testcase_03 AC 151 ms
76,256 KB
testcase_04 AC 516 ms
75,508 KB
testcase_05 AC 357 ms
75,696 KB
testcase_06 AC 641 ms
75,832 KB
testcase_07 AC 645 ms
76,516 KB
testcase_08 AC 620 ms
75,968 KB
testcase_09 AC 623 ms
75,832 KB
testcase_10 AC 639 ms
75,704 KB
testcase_11 AC 634 ms
76,020 KB
testcase_12 AC 646 ms
75,452 KB
testcase_13 AC 635 ms
75,512 KB
testcase_14 AC 624 ms
75,824 KB
testcase_15 AC 639 ms
75,448 KB
testcase_16 AC 626 ms
75,704 KB
testcase_17 AC 680 ms
76,000 KB
testcase_18 AC 640 ms
75,824 KB
testcase_19 AC 615 ms
75,692 KB
testcase_20 AC 624 ms
75,904 KB
testcase_21 AC 645 ms
75,548 KB
testcase_22 AC 629 ms
76,364 KB
testcase_23 AC 662 ms
76,060 KB
testcase_24 AC 651 ms
75,516 KB
testcase_25 AC 635 ms
76,280 KB
testcase_26 AC 42 ms
53,444 KB
testcase_27 AC 514 ms
76,108 KB
testcase_28 AC 507 ms
75,828 KB
testcase_29 AC 518 ms
75,912 KB
testcase_30 AC 526 ms
75,812 KB
testcase_31 AC 521 ms
75,828 KB
testcase_32 AC 39 ms
52,340 KB
testcase_33 AC 289 ms
75,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b = map(int, input().split())
    l = 0
    r = 63246
    S = a + b
    T = 4 * a * b
    while r - l > 1:
        x = (l + r) // 2
        x2 = x * x
        if x2 >= S and T < (x2 - S) ** 2:
            r = x
        else:
            l = x
    print(r)
0