結果

問題 No.40 多項式の割り算
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-30 23:44:14
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 203,620 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-30 23:44:18
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

int main() {
    cin.tie(nullptr);
    
    int D;
    cin >> D;
    
    vector<ll> a(D + 1);
    rep(i, 0, D + 1) cin >> a[i];
    
    reverse(all(a));
    
    rep(i, 0, D - 2) a[i + 2] += a[i];
    
    reverse(all(a));
    
    if (a[0] == 0 && a[1] == 0 && a[2] == 0) {
        cout << 0 << '\n' << 0 << '\n';
    } else if (a[1] == 0 && a[2] == 0) {
        cout << 0 << '\n';
        cout << a[0] << '\n';
    } else if (a[2] == 0) {
        cout << 1 << '\n';
        cout << a[0] << ' ' << a[1] << '\n';
    } else {
            cout << 2 << '\n';
        cout << a[0] << ' ' << a[1] << ' ' << a[2] << '\n';
    }
}
0