結果

問題 No.2420 Simple Problem
ユーザー sepa38sepa38
提出日時 2023-07-15 14:22:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 76,772 KB
最終ジャッジ日時 2024-09-16 23:14:11
合計ジャッジ時間 23,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,480 KB
testcase_01 AC 271 ms
76,612 KB
testcase_02 AC 54 ms
66,104 KB
testcase_03 AC 143 ms
76,160 KB
testcase_04 AC 527 ms
76,736 KB
testcase_05 AC 350 ms
76,312 KB
testcase_06 AC 634 ms
76,340 KB
testcase_07 AC 626 ms
76,704 KB
testcase_08 AC 614 ms
76,648 KB
testcase_09 AC 627 ms
76,532 KB
testcase_10 AC 574 ms
76,148 KB
testcase_11 AC 628 ms
76,556 KB
testcase_12 AC 567 ms
76,632 KB
testcase_13 AC 545 ms
76,400 KB
testcase_14 AC 546 ms
76,164 KB
testcase_15 AC 572 ms
76,144 KB
testcase_16 AC 557 ms
76,352 KB
testcase_17 AC 543 ms
76,460 KB
testcase_18 AC 563 ms
76,656 KB
testcase_19 AC 563 ms
76,284 KB
testcase_20 AC 604 ms
76,764 KB
testcase_21 AC 570 ms
76,360 KB
testcase_22 AC 565 ms
76,288 KB
testcase_23 AC 536 ms
76,424 KB
testcase_24 AC 630 ms
76,752 KB
testcase_25 AC 567 ms
76,356 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 32 ms
53,556 KB
testcase_33 AC 258 ms
76,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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