結果

問題 No.2479 Sum of Squares
ユーザー ldsybldsyb
提出日時 2023-09-22 21:23:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 583 bytes
コンパイル時間 3,872 ms
コンパイル使用メモリ 265,084 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-08 12:04:03
合計ジャッジ時間 17,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 TLE -
testcase_04 AC 672 ms
6,940 KB
testcase_05 AC 389 ms
6,940 KB
testcase_06 AC 454 ms
6,944 KB
testcase_07 AC 436 ms
6,944 KB
testcase_08 AC 577 ms
6,940 KB
testcase_09 AC 512 ms
6,944 KB
testcase_10 AC 538 ms
6,940 KB
testcase_11 AC 492 ms
6,944 KB
testcase_12 AC 568 ms
6,940 KB
testcase_13 AC 358 ms
6,944 KB
testcase_14 AC 473 ms
6,944 KB
testcase_15 AC 467 ms
6,940 KB
testcase_16 AC 511 ms
6,940 KB
testcase_17 AC 487 ms
6,944 KB
testcase_18 AC 465 ms
6,944 KB
testcase_19 AC 522 ms
6,940 KB
testcase_20 AC 513 ms
6,940 KB
testcase_21 AC 437 ms
6,940 KB
testcase_22 AC 499 ms
6,940 KB
testcase_23 AC 425 ms
6,940 KB
testcase_24 AC 470 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

int main()
{
    int64_t s;
    cin >> s;

    vector<int64_t> as;

    int64_t x = 1;
    while ((x + 1) * (x + 1) <= s)
    {
        x++;
    }

    while (0 < s)
    {
        while (x * x <= s)
        {
            as.push_back(x * x);
            s -= x * x;
        }
        x--;
    }

    cout << as.size() << endl;
    for (auto &&a : as)
    {
        cout << a << ' ';
    }
    cout << endl;

    return 0;
}
0