結果

問題 No.2078 魔抜けなパープル
ユーザー ニックネームニックネーム
提出日時 2022-09-25 21:17:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 190 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-01 23:19:42
合計ジャッジ時間 8,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
10,624 KB
testcase_01 AC 1,385 ms
10,624 KB
testcase_02 AC 940 ms
10,752 KB
testcase_03 AC 1,131 ms
10,752 KB
testcase_04 AC 907 ms
10,752 KB
testcase_05 AC 866 ms
10,752 KB
testcase_06 TLE -
testcase_07 AC 948 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x, a = map(int, input().split())
    ans = a**2+x
    for i in range(2, a+1):
        ans = min(ans, (a//i)**2*(i-a%i)+(a//i+1)**2*(a%i)+x*i)
    print(ans)
0