結果

問題 No.2078 魔抜けなパープル
ユーザー lloyzlloyz
提出日時 2022-09-25 21:23:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 62,908 KB
最終ジャッジ日時 2024-06-01 23:21:50
合計ジャッジ時間 1,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,844 KB
testcase_01 AC 83 ms
61,060 KB
testcase_02 AC 67 ms
60,812 KB
testcase_03 AC 77 ms
62,160 KB
testcase_04 AC 69 ms
62,908 KB
testcase_05 AC 69 ms
61,904 KB
testcase_06 AC 99 ms
61,644 KB
testcase_07 AC 66 ms
60,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
INF = 10**18
for _ in range(t):
    x, a = map(int, input().split())
    ans = INF
    for cnt in range(1, a + 1):
        q, r = divmod(a, cnt)
        res = cnt * x + (cnt - r) * q**2 + r* (q + 1)**2
        ans = min(ans, res)
    print(ans)
0