結果

問題 No.2078 魔抜けなパープル
ユーザー ytftytft
提出日時 2022-10-05 22:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 73,164 KB
最終ジャッジ日時 2024-06-10 12:01:28
合計ジャッジ時間 1,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,580 KB
testcase_01 AC 76 ms
61,748 KB
testcase_02 AC 68 ms
63,156 KB
testcase_03 AC 73 ms
61,712 KB
testcase_04 AC 68 ms
61,996 KB
testcase_05 AC 73 ms
61,896 KB
testcase_06 AC 107 ms
61,424 KB
testcase_07 AC 75 ms
73,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
for i in range(N):
	T,A=map(int,input().split())
	ans=float('inf')
	for j in range(1,A+1):
		ans=min(ans,j*T+(A%j)*(A//j+1)**2+(j-A%j)*(A//j)**2)
	print(ans)
0