結果

問題 No.2479 Sum of Squares
ユーザー kpinkcat
提出日時 2023-10-05 08:52:28
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 195,848 KB
最終ジャッジ日時 2025-02-17 04:21:59
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 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 = "";
    for (auto x : ans){
        cout << delim << x;
        delim = " ";
    }
    cout << endl;
}
0