結果

問題 No.2479 Sum of Squares
ユーザー achapiachapi
提出日時 2023-09-22 21:23:11
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 202,648 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-08 12:02:00
合計ジャッジ時間 2,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	long long S;
	cin >> S;
	vector<long long> A;
	while (S > 0){
		long long k = sqrt(S);
		k *= k;
		A.push_back(k);
		S -= k;
	}
	cout << A.size() << endl;
	for (int i = 0; i < (int) A.size(); i++){
		cout << A[i];
		if (i + 1 < (int) A.size()){
			cout << ' ';
		}
	}
	cout << endl;
}
0