結果

問題 No.2420 Simple Problem
ユーザー miya145592miya145592
提出日時 2023-08-12 14:06:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 103,900 KB
最終ジャッジ日時 2024-11-19 17:22:49
合計ジャッジ時間 15,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,644 KB
testcase_01 AC 222 ms
87,688 KB
testcase_02 AC 66 ms
68,680 KB
testcase_03 AC 132 ms
80,252 KB
testcase_04 AC 337 ms
98,356 KB
testcase_05 AC 241 ms
89,984 KB
testcase_06 AC 389 ms
103,484 KB
testcase_07 AC 416 ms
103,436 KB
testcase_08 AC 420 ms
103,476 KB
testcase_09 AC 413 ms
103,496 KB
testcase_10 AC 416 ms
103,424 KB
testcase_11 AC 411 ms
103,144 KB
testcase_12 AC 415 ms
103,488 KB
testcase_13 AC 412 ms
103,176 KB
testcase_14 AC 428 ms
103,756 KB
testcase_15 AC 422 ms
103,272 KB
testcase_16 AC 403 ms
103,460 KB
testcase_17 AC 407 ms
103,136 KB
testcase_18 AC 404 ms
103,224 KB
testcase_19 AC 419 ms
103,232 KB
testcase_20 AC 397 ms
103,240 KB
testcase_21 AC 410 ms
103,500 KB
testcase_22 AC 401 ms
103,176 KB
testcase_23 AC 409 ms
103,900 KB
testcase_24 AC 417 ms
103,832 KB
testcase_25 AC 408 ms
103,248 KB
testcase_26 AC 39 ms
53,020 KB
testcase_27 AC 351 ms
98,168 KB
testcase_28 AC 342 ms
97,716 KB
testcase_29 AC 340 ms
97,832 KB
testcase_30 AC 351 ms
97,944 KB
testcase_31 AC 335 ms
98,132 KB
testcase_32 AC 39 ms
52,288 KB
testcase_33 AC 211 ms
86,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isqrt(n):
    if n == 0: return 0
    x = 1 << (n.bit_length() + 1) // 2
    y = (x + n // x) // 2
    while y < x:
        x = y
        y = (x + n // x) // 2
    return x

N = int(input())
AB = [list(map(int, input().split())) for _ in range(N)]
for a, b in AB:
    x = isqrt(a+b+isqrt(4*a*b))
    print(x+1)
0