結果

問題 No.2078 魔抜けなパープル
ユーザー ニックネームニックネーム
提出日時 2022-09-25 21:17:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-06-01 23:19:44
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,496 KB
testcase_01 AC 84 ms
61,440 KB
testcase_02 AC 73 ms
60,800 KB
testcase_03 AC 79 ms
61,440 KB
testcase_04 AC 69 ms
61,184 KB
testcase_05 AC 69 ms
61,056 KB
testcase_06 AC 102 ms
61,184 KB
testcase_07 AC 68 ms
59,520 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