結果

問題 No.2420 Simple Problem
ユーザー hotate29hotate29
提出日時 2023-10-07 00:00:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 76,500 KB
最終ジャッジ日時 2024-07-26 17:28:57
合計ジャッジ時間 23,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,660 KB
testcase_01 AC 332 ms
76,344 KB
testcase_02 AC 67 ms
72,148 KB
testcase_03 AC 164 ms
76,104 KB
testcase_04 AC 608 ms
76,256 KB
testcase_05 AC 401 ms
76,112 KB
testcase_06 AC 728 ms
76,500 KB
testcase_07 AC 713 ms
76,156 KB
testcase_08 AC 721 ms
76,148 KB
testcase_09 AC 721 ms
76,228 KB
testcase_10 AC 715 ms
76,172 KB
testcase_11 AC 726 ms
76,196 KB
testcase_12 AC 720 ms
76,224 KB
testcase_13 AC 722 ms
76,408 KB
testcase_14 AC 741 ms
76,176 KB
testcase_15 AC 736 ms
75,912 KB
testcase_16 AC 709 ms
76,368 KB
testcase_17 AC 728 ms
76,096 KB
testcase_18 AC 718 ms
76,276 KB
testcase_19 AC 730 ms
76,480 KB
testcase_20 AC 717 ms
76,408 KB
testcase_21 AC 731 ms
76,100 KB
testcase_22 AC 725 ms
76,144 KB
testcase_23 AC 721 ms
76,480 KB
testcase_24 AC 702 ms
76,228 KB
testcase_25 AC 714 ms
76,160 KB
testcase_26 AC 37 ms
52,332 KB
testcase_27 AC 596 ms
76,104 KB
testcase_28 AC 581 ms
75,852 KB
testcase_29 AC 572 ms
76,204 KB
testcase_30 AC 578 ms
76,120 KB
testcase_31 AC 582 ms
76,372 KB
testcase_32 AC 36 ms
53,008 KB
testcase_33 AC 327 ms
76,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(X):
	return 4*A*B < (X*X - A - B)**2 and (X*X - A - B) >= 0

for _ in range(int(input())):
	A, B = map(int, input().split())

	ok = 100000
	ng = 0
	while (ok - ng) > 1:
		mid = (ok + ng) // 2
		if f(mid):
			ok = mid
		else:
			ng = mid

	print(ok)
0