結果

問題 No.2420 Simple Problem
ユーザー maru65536maru65536
提出日時 2023-08-12 14:17:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-19 18:26:44
合計ジャッジ時間 46,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 680 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 261 ms
10,880 KB
testcase_04 AC 1,295 ms
10,752 KB
testcase_05 AC 829 ms
10,880 KB
testcase_06 AC 1,610 ms
10,752 KB
testcase_07 AC 1,626 ms
10,880 KB
testcase_08 AC 1,643 ms
10,880 KB
testcase_09 AC 1,568 ms
10,880 KB
testcase_10 AC 1,646 ms
10,752 KB
testcase_11 AC 1,635 ms
10,752 KB
testcase_12 AC 1,609 ms
10,752 KB
testcase_13 AC 1,626 ms
10,880 KB
testcase_14 AC 1,569 ms
10,880 KB
testcase_15 AC 1,806 ms
10,880 KB
testcase_16 AC 1,603 ms
10,752 KB
testcase_17 AC 1,564 ms
10,880 KB
testcase_18 AC 1,619 ms
10,752 KB
testcase_19 AC 1,595 ms
10,752 KB
testcase_20 AC 1,577 ms
10,752 KB
testcase_21 AC 1,604 ms
10,752 KB
testcase_22 AC 1,614 ms
10,752 KB
testcase_23 AC 1,613 ms
10,752 KB
testcase_24 AC 1,619 ms
10,880 KB
testcase_25 AC 1,624 ms
10,880 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 26 ms
10,752 KB
testcase_33 AC 660 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,ceil
n=int(input())
eps=1e-10
for _ in range(n):
    a,b=map(int,input().split())
    print(ceil(sqrt(a+b+2*sqrt(a*b))+eps))
0