結果

問題 No.2420 Simple Problem
ユーザー hiro1729hiro1729
提出日時 2024-02-23 09:32:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-29 04:59:17
合計ジャッジ時間 24,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 373 ms
76,928 KB
testcase_02 AC 79 ms
71,296 KB
testcase_03 AC 191 ms
76,800 KB
testcase_04 AC 602 ms
77,184 KB
testcase_05 AC 433 ms
76,544 KB
testcase_06 AC 754 ms
76,800 KB
testcase_07 AC 765 ms
76,800 KB
testcase_08 AC 760 ms
76,672 KB
testcase_09 AC 760 ms
76,672 KB
testcase_10 AC 750 ms
76,672 KB
testcase_11 AC 753 ms
76,672 KB
testcase_12 AC 753 ms
76,800 KB
testcase_13 AC 761 ms
76,544 KB
testcase_14 AC 746 ms
77,184 KB
testcase_15 AC 784 ms
76,800 KB
testcase_16 AC 749 ms
76,672 KB
testcase_17 AC 725 ms
76,544 KB
testcase_18 AC 737 ms
76,928 KB
testcase_19 AC 728 ms
76,600 KB
testcase_20 AC 741 ms
76,928 KB
testcase_21 AC 729 ms
76,544 KB
testcase_22 AC 751 ms
76,772 KB
testcase_23 AC 715 ms
77,044 KB
testcase_24 AC 758 ms
76,736 KB
testcase_25 AC 730 ms
76,532 KB
testcase_26 AC 40 ms
52,336 KB
testcase_27 AC 603 ms
76,932 KB
testcase_28 AC 609 ms
77,152 KB
testcase_29 AC 616 ms
77,056 KB
testcase_30 AC 591 ms
76,800 KB
testcase_31 AC 619 ms
76,800 KB
testcase_32 AC 38 ms
51,968 KB
testcase_33 AC 345 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt
for _ in range(int(input())):
	A, B = map(int, input().split())
	print(isqrt(A + B + isqrt(4 * A * B)) + 1)
0