結果
問題 |
No.2479 Sum of Squares
|
ユーザー |
![]() |
提出日時 | 2023-10-05 08:53:32 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,243 ms / 2,000 ms |
コード長 | 610 bytes |
コンパイル時間 | 1,951 ms |
コンパイル使用メモリ | 196,200 KB |
最終ジャッジ日時 | 2025-02-17 04:22:13 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#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; }