結果

問題 No.2420 Simple Problem
ユーザー NakLon131NakLon131
提出日時 2023-08-13 16:01:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 909 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-25 17:47:39
合計ジャッジ時間 30,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 398 ms
76,032 KB
testcase_02 AC 74 ms
69,120 KB
testcase_03 AC 198 ms
76,288 KB
testcase_04 AC 662 ms
76,288 KB
testcase_05 AC 474 ms
76,672 KB
testcase_06 AC 872 ms
76,416 KB
testcase_07 AC 868 ms
76,544 KB
testcase_08 AC 862 ms
76,544 KB
testcase_09 AC 852 ms
76,416 KB
testcase_10 AC 848 ms
76,416 KB
testcase_11 AC 851 ms
76,416 KB
testcase_12 AC 861 ms
76,800 KB
testcase_13 AC 853 ms
76,672 KB
testcase_14 AC 867 ms
76,800 KB
testcase_15 AC 909 ms
76,288 KB
testcase_16 AC 857 ms
76,544 KB
testcase_17 AC 831 ms
76,416 KB
testcase_18 AC 867 ms
76,288 KB
testcase_19 AC 878 ms
76,160 KB
testcase_20 AC 848 ms
76,416 KB
testcase_21 AC 851 ms
76,416 KB
testcase_22 AC 840 ms
76,544 KB
testcase_23 AC 823 ms
76,416 KB
testcase_24 AC 878 ms
76,288 KB
testcase_25 AC 859 ms
76,800 KB
testcase_26 AC 47 ms
59,008 KB
testcase_27 AC 713 ms
76,544 KB
testcase_28 AC 675 ms
76,288 KB
testcase_29 AC 695 ms
76,288 KB
testcase_30 AC 673 ms
76,288 KB
testcase_31 AC 700 ms
76,032 KB
testcase_32 AC 37 ms
51,840 KB
testcase_33 AC 385 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

def solve():
	a, b = map(int, input().split())
	# sqrt(a) + sqrt(b) < x
	# 2 * sqrt(ab) < (x^2-a-b)
	# 4ab < (x^2 - a - b) ^ 2

	# 二分探索
	l = 0
	r = 10**5				# sqrt(10^9) = 3.2*10^4が2つなので、10**5程度あればよい
	for i in range(100):
		m = (l + r) // 2

		# valが負、または、val**2 >= 4abなら、値mが小さい
		val = m**2-a-b
		if val < 0 or 4*a*b >= val**2: l = m
		else: r = m
	print(r)

for i in range(n):
	solve()
0