結果

問題 No.2479 Sum of Squares
ユーザー kpinkcatkpinkcat
提出日時 2023-10-05 08:53:32
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,099 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 204,068 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-26 14:57:35
合計ジャッジ時間 9,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using ll = long long;
using namespace std;

int main(){
    ll s, n = 0;
    cin >> s;
    vector<ll> ans;
    while (n*n <= s){
        n++;
    }
    while (s){
        if (n*n > s) n--;
        else {
            ans.push_back(n*n);
            s -= n*n;
        }
    }
    string delim = "";
    cout << ans.size() << endl;
    for (auto x : ans){
        cout << delim << x;
        delim = " ";
    }
    cout << endl;
}
0