結果

問題 No.2420 Simple Problem
ユーザー sepa38sepa38
提出日時 2023-07-15 15:27:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 77,032 KB
最終ジャッジ日時 2024-09-17 00:24:01
合計ジャッジ時間 21,578 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 304 ms
76,160 KB
testcase_02 AC 64 ms
65,024 KB
testcase_03 AC 166 ms
76,536 KB
testcase_04 AC 527 ms
76,408 KB
testcase_05 AC 360 ms
76,380 KB
testcase_06 AC 636 ms
76,552 KB
testcase_07 AC 627 ms
76,416 KB
testcase_08 AC 621 ms
76,608 KB
testcase_09 AC 637 ms
76,400 KB
testcase_10 AC 621 ms
76,544 KB
testcase_11 AC 626 ms
76,544 KB
testcase_12 AC 620 ms
76,416 KB
testcase_13 AC 620 ms
76,288 KB
testcase_14 AC 632 ms
76,416 KB
testcase_15 AC 637 ms
76,476 KB
testcase_16 AC 638 ms
76,516 KB
testcase_17 AC 625 ms
76,672 KB
testcase_18 AC 634 ms
76,544 KB
testcase_19 AC 630 ms
76,160 KB
testcase_20 AC 623 ms
76,672 KB
testcase_21 AC 631 ms
76,408 KB
testcase_22 AC 633 ms
76,160 KB
testcase_23 AC 611 ms
76,416 KB
testcase_24 AC 617 ms
76,416 KB
testcase_25 AC 630 ms
76,800 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 39 ms
51,840 KB
testcase_33 AC 300 ms
76,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
for _ in range(int(input())):
  a, b = map(int, input().split())
  x = math.floor(math.sqrt(a) + math.sqrt(b) + 1)
  print(x)
0