結果

問題 No.2420 Simple Problem
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-23 06:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,220 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 105,008 KB
最終ジャッジ日時 2024-09-27 14:28:05
合計ジャッジ時間 40,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,484 KB
testcase_01 AC 550 ms
87,196 KB
testcase_02 AC 71 ms
76,024 KB
testcase_03 AC 246 ms
79,932 KB
testcase_04 AC 977 ms
98,408 KB
testcase_05 AC 649 ms
90,200 KB
testcase_06 AC 1,214 ms
104,844 KB
testcase_07 AC 1,203 ms
104,632 KB
testcase_08 AC 1,194 ms
105,008 KB
testcase_09 AC 1,210 ms
104,484 KB
testcase_10 AC 1,205 ms
105,004 KB
testcase_11 AC 1,200 ms
104,784 KB
testcase_12 AC 1,218 ms
104,564 KB
testcase_13 AC 1,211 ms
105,004 KB
testcase_14 AC 1,207 ms
104,648 KB
testcase_15 AC 1,205 ms
104,716 KB
testcase_16 AC 1,202 ms
104,568 KB
testcase_17 AC 1,215 ms
104,572 KB
testcase_18 AC 1,220 ms
104,452 KB
testcase_19 AC 1,209 ms
104,792 KB
testcase_20 AC 1,197 ms
104,880 KB
testcase_21 AC 1,202 ms
104,764 KB
testcase_22 AC 1,207 ms
104,912 KB
testcase_23 AC 1,202 ms
104,640 KB
testcase_24 AC 1,188 ms
104,988 KB
testcase_25 AC 1,205 ms
104,636 KB
testcase_26 AC 38 ms
53,504 KB
testcase_27 AC 1,023 ms
98,708 KB
testcase_28 AC 1,054 ms
98,704 KB
testcase_29 AC 1,040 ms
98,684 KB
testcase_30 AC 1,039 ms
98,500 KB
testcase_31 AC 1,057 ms
98,852 KB
testcase_32 AC 37 ms
52,140 KB
testcase_33 AC 527 ms
86,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# A+2ab+B<X^2
# 2ab < (X^2-A-B)
# 4AB < (X^2-A-B)^2

N = int(input())
ANS = []
for i in range(N):
	
	A,B = map(int,input().split())
	l = 0
	r = 10**6
	while r-l != 1:
		m = (l+r)//2
		if m**2-A-B > 0 and 4*A*B < (m**2-A-B)**2:
			r = m
		else:
			l = m
	ANS.append(r)
print (*ANS,sep="\n")
0