結果

問題 No.2420 Simple Problem
ユーザー だれだれ
提出日時 2023-08-12 14:29:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 82,204 KB
最終ジャッジ日時 2024-11-19 19:44:57
合計ジャッジ時間 24,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,700 KB
testcase_01 AC 347 ms
78,296 KB
testcase_02 AC 62 ms
72,500 KB
testcase_03 AC 171 ms
76,532 KB
testcase_04 AC 603 ms
80,820 KB
testcase_05 AC 417 ms
78,844 KB
testcase_06 AC 738 ms
81,676 KB
testcase_07 AC 739 ms
81,728 KB
testcase_08 AC 746 ms
81,836 KB
testcase_09 AC 736 ms
81,596 KB
testcase_10 AC 741 ms
81,936 KB
testcase_11 AC 731 ms
82,140 KB
testcase_12 AC 737 ms
81,700 KB
testcase_13 AC 740 ms
81,608 KB
testcase_14 AC 730 ms
81,768 KB
testcase_15 AC 735 ms
82,000 KB
testcase_16 AC 742 ms
82,204 KB
testcase_17 AC 756 ms
81,820 KB
testcase_18 AC 732 ms
81,688 KB
testcase_19 AC 740 ms
82,080 KB
testcase_20 AC 730 ms
81,952 KB
testcase_21 AC 733 ms
82,000 KB
testcase_22 AC 735 ms
81,644 KB
testcase_23 AC 751 ms
82,176 KB
testcase_24 AC 731 ms
82,172 KB
testcase_25 AC 727 ms
81,640 KB
testcase_26 AC 40 ms
54,084 KB
testcase_27 AC 641 ms
81,292 KB
testcase_28 AC 631 ms
80,916 KB
testcase_29 AC 633 ms
81,188 KB
testcase_30 AC 633 ms
80,824 KB
testcase_31 AC 632 ms
80,824 KB
testcase_32 AC 38 ms
53,420 KB
testcase_33 AC 345 ms
78,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

n = int(input())
for i in range(n):
    a, b = map(int, input().split())
    assert a > 0 and b > 0
    c = a + b
    d = (a - b) ** 2
    hi = 63246
    lw = 0
    while hi - lw > 1:
        mid = (hi + lw) // 2
        if mid ** 2 - c <= 0:
            lw = mid
            continue
        if mid ** 4 - (2 * (mid ** 2) * c) + d > 0:
            hi = mid
        else:
            lw = mid
    print(hi)
0