結果
問題 | No.2479 Sum of Squares |
ユーザー |
![]() |
提出日時 | 2023-10-05 08:52:28 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 578 bytes |
コンパイル時間 | 2,108 ms |
コンパイル使用メモリ | 203,220 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-26 14:57:24 |
合計ジャッジ時間 | 11,305 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 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 = ""; for (auto x : ans){ cout << delim << x; delim = " "; } cout << endl; }