結果

問題 No.2420 Simple Problem
ユーザー SuzuxSuzux
提出日時 2023-08-12 14:59:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 77,888 KB
最終ジャッジ日時 2024-11-19 22:30:36
合計ジャッジ時間 10,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,756 KB
testcase_01 AC 124 ms
76,604 KB
testcase_02 AC 53 ms
63,836 KB
testcase_03 AC 87 ms
76,288 KB
testcase_04 AC 183 ms
76,968 KB
testcase_05 AC 139 ms
76,628 KB
testcase_06 AC 207 ms
77,128 KB
testcase_07 AC 207 ms
77,460 KB
testcase_08 AC 204 ms
77,276 KB
testcase_09 AC 210 ms
77,184 KB
testcase_10 AC 205 ms
77,432 KB
testcase_11 AC 205 ms
77,352 KB
testcase_12 AC 208 ms
77,156 KB
testcase_13 AC 204 ms
77,172 KB
testcase_14 AC 206 ms
77,200 KB
testcase_15 AC 210 ms
77,200 KB
testcase_16 AC 208 ms
77,684 KB
testcase_17 AC 205 ms
77,452 KB
testcase_18 AC 208 ms
77,624 KB
testcase_19 AC 205 ms
77,632 KB
testcase_20 AC 208 ms
77,208 KB
testcase_21 AC 207 ms
77,012 KB
testcase_22 AC 212 ms
77,220 KB
testcase_23 AC 209 ms
77,148 KB
testcase_24 AC 208 ms
77,148 KB
testcase_25 AC 207 ms
77,428 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 39 ms
52,248 KB
testcase_33 AC 123 ms
76,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

n = int(input())

for _ in range(n):
    a, b = list(map(int, stdin.readline().split()))
    temp = a + b + int(2*(a*b)**0.5)
    temp = int(temp ** 0.5)
    print(temp+1)
0