結果

問題 No.2420 Simple Problem
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-08-12 14:31:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 101,648 KB
最終ジャッジ日時 2024-11-19 19:51:30
合計ジャッジ時間 14,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 204 ms
84,500 KB
testcase_02 AC 72 ms
67,328 KB
testcase_03 AC 136 ms
78,848 KB
testcase_04 AC 305 ms
95,772 KB
testcase_05 AC 231 ms
87,040 KB
testcase_06 AC 358 ms
101,304 KB
testcase_07 AC 359 ms
100,864 KB
testcase_08 AC 355 ms
101,384 KB
testcase_09 AC 355 ms
101,516 KB
testcase_10 AC 362 ms
101,516 KB
testcase_11 AC 359 ms
100,992 KB
testcase_12 AC 358 ms
101,648 KB
testcase_13 AC 352 ms
101,136 KB
testcase_14 AC 368 ms
100,864 KB
testcase_15 AC 360 ms
101,416 KB
testcase_16 AC 356 ms
101,144 KB
testcase_17 AC 351 ms
101,136 KB
testcase_18 AC 359 ms
100,736 KB
testcase_19 AC 361 ms
101,500 KB
testcase_20 AC 356 ms
101,288 KB
testcase_21 AC 353 ms
101,120 KB
testcase_22 AC 357 ms
100,880 KB
testcase_23 AC 359 ms
100,992 KB
testcase_24 AC 365 ms
101,376 KB
testcase_25 AC 350 ms
100,884 KB
testcase_26 AC 41 ms
51,840 KB
testcase_27 AC 305 ms
95,264 KB
testcase_28 AC 304 ms
95,280 KB
testcase_29 AC 314 ms
95,512 KB
testcase_30 AC 305 ms
95,632 KB
testcase_31 AC 345 ms
96,512 KB
testcase_32 AC 43 ms
51,968 KB
testcase_33 AC 208 ms
84,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a, b):
    l = 1
    r = 64000
    P = 4*a*b
    while r-l > 1:
        mid = (l+r)//2
        Q = mid**2 - 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