結果
| 問題 | No.2479 Sum of Squares |
| コンテスト | |
| ユーザー |
kpinkcat
|
| 提出日時 | 2023-10-05 08:52:28 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 578 bytes |
| 記録 | |
| コンパイル時間 | 1,232 ms |
| コンパイル使用メモリ | 212,264 KB |
| 実行使用メモリ | 11,944 KB |
| 最終ジャッジ日時 | 2026-07-02 13:58:13 |
| 合計ジャッジ時間 | 9,205 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}
kpinkcat