結果

問題 No.2420 Simple Problem
ユーザー Seed57_cashSeed57_cash
提出日時 2023-06-21 09:39:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 907 bytes
コンパイル時間 1,239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-28 19:33:14
合計ジャッジ時間 22,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 333 ms
77,440 KB
testcase_02 AC 73 ms
66,688 KB
testcase_03 AC 184 ms
77,568 KB
testcase_04 AC 536 ms
77,440 KB
testcase_05 AC 376 ms
77,312 KB
testcase_06 AC 659 ms
77,184 KB
testcase_07 AC 652 ms
77,440 KB
testcase_08 AC 638 ms
77,696 KB
testcase_09 AC 636 ms
77,440 KB
testcase_10 AC 675 ms
77,440 KB
testcase_11 AC 643 ms
77,184 KB
testcase_12 AC 651 ms
77,568 KB
testcase_13 AC 693 ms
77,696 KB
testcase_14 AC 620 ms
77,056 KB
testcase_15 AC 666 ms
77,440 KB
testcase_16 AC 633 ms
77,568 KB
testcase_17 AC 646 ms
77,312 KB
testcase_18 AC 652 ms
77,696 KB
testcase_19 AC 644 ms
77,568 KB
testcase_20 AC 643 ms
77,184 KB
testcase_21 AC 642 ms
77,568 KB
testcase_22 AC 638 ms
77,440 KB
testcase_23 AC 635 ms
77,440 KB
testcase_24 AC 641 ms
77,568 KB
testcase_25 AC 645 ms
77,312 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 316 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 小数の誤差がありそうなので整数に帰着させる

# 与えられたrが条件を満たすかの正確な判定
# r >= math.sqrt(a) + math.sqrt(b)
# r ** 2 >= a + b + 2 * math.sqrt(a * b) and r >= 0
# r ** 2 - a - b >= 2 * math.sqrt(a * b) and r >= 0
# (r ** 2 - a - b) ** 2 >= 4 * a * b and r >= 0 and r ** 2 - a - b >= 0

import math


def check(a, b, r):
	if (r ** 2 - a - b) ** 2 >= 4 * a * b and (r ** 2 - a - b) >= 0 and r >= 0:
		return True
	else:
		return False
		

def solve(a, b):
	# 余裕みて少し大きめな数を取って、2減らしたものまでを試す(二分探索でも全然OK)
	res = math.ceil(math.sqrt(a)) + math.ceil(math.sqrt(b))
	if check(a, b, res - 2) == True:
		return res - 2
	elif check(a, b, res - 1) == True:
		return res - 1
	else:
		return res
	

# main
n = int(input())
for _ in range(n):
	a, b = map(int, input().split())
	print(solve(a, b))
0