結果

問題 No.2420 Simple Problem
ユーザー VvyLwVvyLw
提出日時 2023-08-12 16:09:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-20 05:09:04
合計ジャッジ時間 20,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 307 ms
76,032 KB
testcase_02 AC 73 ms
65,280 KB
testcase_03 AC 174 ms
76,032 KB
testcase_04 AC 500 ms
76,672 KB
testcase_05 AC 354 ms
76,416 KB
testcase_06 AC 606 ms
76,544 KB
testcase_07 AC 605 ms
76,544 KB
testcase_08 AC 605 ms
76,160 KB
testcase_09 AC 602 ms
76,032 KB
testcase_10 AC 609 ms
76,160 KB
testcase_11 AC 609 ms
76,288 KB
testcase_12 AC 612 ms
76,416 KB
testcase_13 AC 599 ms
76,288 KB
testcase_14 AC 602 ms
76,416 KB
testcase_15 AC 609 ms
76,288 KB
testcase_16 AC 610 ms
76,160 KB
testcase_17 AC 612 ms
76,288 KB
testcase_18 AC 605 ms
76,288 KB
testcase_19 AC 609 ms
76,928 KB
testcase_20 AC 612 ms
76,032 KB
testcase_21 AC 613 ms
76,032 KB
testcase_22 AC 610 ms
76,032 KB
testcase_23 AC 612 ms
76,160 KB
testcase_24 AC 597 ms
76,288 KB
testcase_25 AC 606 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 41 ms
51,584 KB
testcase_33 AC 301 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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