結果

問題 No.2420 Simple Problem
ユーザー pyt-314pyt-314
提出日時 2023-08-12 14:25:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 77,112 KB
最終ジャッジ日時 2024-11-19 19:18:00
合計ジャッジ時間 21,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 306 ms
76,416 KB
testcase_02 AC 59 ms
65,536 KB
testcase_03 AC 161 ms
76,288 KB
testcase_04 AC 539 ms
76,416 KB
testcase_05 AC 364 ms
76,416 KB
testcase_06 AC 644 ms
76,672 KB
testcase_07 AC 649 ms
76,288 KB
testcase_08 AC 649 ms
76,616 KB
testcase_09 AC 658 ms
76,416 KB
testcase_10 AC 652 ms
76,544 KB
testcase_11 AC 640 ms
76,416 KB
testcase_12 AC 625 ms
76,416 KB
testcase_13 AC 639 ms
76,288 KB
testcase_14 AC 621 ms
76,160 KB
testcase_15 AC 624 ms
76,732 KB
testcase_16 AC 656 ms
76,288 KB
testcase_17 AC 647 ms
76,608 KB
testcase_18 AC 646 ms
76,416 KB
testcase_19 AC 629 ms
76,356 KB
testcase_20 AC 625 ms
76,800 KB
testcase_21 AC 625 ms
76,644 KB
testcase_22 AC 638 ms
76,288 KB
testcase_23 AC 647 ms
76,288 KB
testcase_24 AC 641 ms
76,416 KB
testcase_25 AC 621 ms
76,288 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 34 ms
51,968 KB
testcase_33 AC 290 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    a, b = map(float, input().split())
    print(int((a**0.5 + b**0.5) // 1 + 1))
0