結果

問題 No.2479 Sum of Squares
ユーザー achapiachapi
提出日時 2023-09-22 21:23:11
言語 C++17
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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