結果
| 問題 | No.2479 Sum of Squares |
| コンテスト | |
| ユーザー |
kpinkcat
|
| 提出日時 | 2023-10-05 08:51:46 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 574 bytes |
| 記録 | |
| コンパイル時間 | 1,256 ms |
| コンパイル使用メモリ | 212,396 KB |
| 実行使用メモリ | 11,956 KB |
| 最終ジャッジ日時 | 2026-07-02 13:58:03 |
| 合計ジャッジ時間 | 9,993 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:18:13: warning: 'n' is used uninitialized [-Wuninitialized]
18 | while (n*n <= s){
| ~^~
main.cpp:15:11: note: 'n' was declared here
15 | ll s, n;
| ^
ソースコード
#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;
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