結果

問題 No.2479 Sum of Squares
ユーザー kpinkcat
提出日時 2023-10-05 09:09:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 196,928 KB
最終ジャッジ日時 2025-02-17 04:22:33
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    cin >> s;
    vector<ll> ans;
    while (s){
        ll lo = 1, mid, hi = 1e9;
        while (hi - lo > 1){
            mid = (lo + hi)/2;
            if (mid*mid <= s) lo = mid;
            else hi = mid;
        }
        ans.push_back(lo*lo);
        s -= lo*lo;
        
    }
    string delim = "";
    cout << ans.size() << endl;
    for (auto x : ans){
        cout << delim << x;
        delim = " ";
    }
    cout << endl;
}
0