結果

問題 No.2078 魔抜けなパープル
ユーザー みここみここ
提出日時 2022-12-12 21:38:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 68,496 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 19:32:22
合計ジャッジ時間 1,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 16 ms
6,816 KB
testcase_02 AC 12 ms
6,816 KB
testcase_03 AC 15 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 12 ms
6,816 KB
testcase_06 AC 24 ms
6,816 KB
testcase_07 AC 13 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

const ll INF = 1000000000000000000;

int main()
{
    int t;
    cin >> t;
    while (t--)
    {
        ll x, a;
        cin >> x >> a;
        ll ans = INF;
        for (int i = 1; i <= a; i++)
        {
            ans = min(ans, a % i * (a / i + 1) * (a / i + 1) + (i - a % i) * (a / i) * (a / i) + x * i);
        }
        cout << ans << endl;
    }
}
0