結果

問題 No.2420 Simple Problem
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-08-12 18:07:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 101,668 KB
最終ジャッジ日時 2024-11-20 08:24:39
合計ジャッジ時間 13,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 188 ms
84,120 KB
testcase_02 AC 67 ms
67,072 KB
testcase_03 AC 131 ms
79,104 KB
testcase_04 AC 280 ms
95,532 KB
testcase_05 AC 209 ms
87,324 KB
testcase_06 AC 319 ms
101,268 KB
testcase_07 AC 325 ms
101,400 KB
testcase_08 AC 329 ms
101,292 KB
testcase_09 AC 333 ms
101,372 KB
testcase_10 AC 331 ms
101,172 KB
testcase_11 AC 328 ms
101,160 KB
testcase_12 AC 324 ms
101,388 KB
testcase_13 AC 329 ms
101,008 KB
testcase_14 AC 331 ms
101,668 KB
testcase_15 AC 326 ms
101,272 KB
testcase_16 AC 332 ms
101,132 KB
testcase_17 AC 326 ms
101,136 KB
testcase_18 AC 329 ms
101,248 KB
testcase_19 AC 324 ms
101,388 KB
testcase_20 AC 320 ms
101,264 KB
testcase_21 AC 324 ms
101,240 KB
testcase_22 AC 321 ms
101,264 KB
testcase_23 AC 325 ms
101,160 KB
testcase_24 AC 324 ms
101,412 KB
testcase_25 AC 316 ms
101,516 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 271 ms
95,260 KB
testcase_28 AC 273 ms
95,660 KB
testcase_29 AC 272 ms
95,504 KB
testcase_30 AC 273 ms
95,504 KB
testcase_31 AC 307 ms
96,528 KB
testcase_32 AC 36 ms
51,840 KB
testcase_33 AC 181 ms
84,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a, b):
    l = 1
    r = 64000
    P = 4*a*b
    while r-l > 1:
        mid = (l+r)//2
        Q = mid*mid - a - b
        R = Q**2
        if Q > 0:
            if P < R:
                r = mid
            else:
                l = mid
        else:
            l = mid
    return r


N = int(input())
ans = []
for _ in range(N):
    A, B = map(int, input().split())
    ans.append(solve(A, B))
print(*ans, sep="\n")
0