結果

問題 No.2420 Simple Problem
ユーザー ohanaohana
提出日時 2023-08-25 14:46:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-06 09:08:48
合計ジャッジ時間 23,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 313 ms
76,288 KB
testcase_02 AC 74 ms
65,408 KB
testcase_03 AC 175 ms
76,416 KB
testcase_04 AC 517 ms
76,032 KB
testcase_05 AC 363 ms
76,672 KB
testcase_06 AC 612 ms
76,160 KB
testcase_07 AC 608 ms
76,544 KB
testcase_08 AC 618 ms
76,544 KB
testcase_09 AC 613 ms
76,288 KB
testcase_10 AC 613 ms
76,288 KB
testcase_11 AC 621 ms
76,288 KB
testcase_12 AC 620 ms
76,416 KB
testcase_13 AC 627 ms
76,160 KB
testcase_14 AC 613 ms
76,672 KB
testcase_15 AC 610 ms
76,672 KB
testcase_16 AC 619 ms
76,416 KB
testcase_17 AC 615 ms
76,800 KB
testcase_18 AC 614 ms
76,544 KB
testcase_19 AC 623 ms
76,160 KB
testcase_20 AC 628 ms
76,160 KB
testcase_21 AC 623 ms
76,160 KB
testcase_22 AC 616 ms
76,544 KB
testcase_23 AC 621 ms
76,416 KB
testcase_24 AC 612 ms
76,288 KB
testcase_25 AC 608 ms
76,416 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 40 ms
52,224 KB
testcase_33 AC 305 ms
76,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil, sqrt

n = int(input())
for i in range(n):
    a, b = map(int, input().split())
    print(
        ceil(sqrt(a) + sqrt(b))
        if sqrt(a) + sqrt(b) != int(sqrt(a) + sqrt(b))
        else int(sqrt(a) + sqrt(b)) + 1
    )
0