結果

問題 No.2420 Simple Problem
ユーザー FromBooskaFromBooska
提出日時 2023-08-18 20:44:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 426 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 153,344 KB
最終ジャッジ日時 2024-11-28 04:26:41
合計ジャッジ時間 82,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 TLE -
testcase_02 AC 108 ms
74,368 KB
testcase_03 AC 1,621 ms
153,344 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 48 ms
65,024 KB
testcase_27 AC 548 ms
76,796 KB
testcase_28 AC 539 ms
75,904 KB
testcase_29 AC 543 ms
76,432 KB
testcase_30 AC 549 ms
76,776 KB
testcase_31 AC 542 ms
76,032 KB
testcase_32 AC 40 ms
52,352 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 10**9全探索はできないがsqrt(10**6)なら全探索可能
# A < Bとする

from math import floor, ceil

T = int(input())
for t in range(T):
    A, B = map(int, input().split())
    if A > B:
        A, B = B, A

    mn = floor(A**0.5)*2
    mx = ceil(B**0.5)*2
    #print('mn', mn, 'mx', mx)

    for x in range(mn, mx+10):
        if (x**2-A-B) > 0 and 4*A*B < (x**2-A-B)**2:
            print(x)
            break
0