結果
| 問題 | No.40 多項式の割り算 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-15 04:38:44 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 5,000 ms |
| コード長 | 690 bytes |
| 記録 | |
| コンパイル時間 | 1,807 ms |
| コンパイル使用メモリ | 168,476 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 14:15:44 |
| 合計ジャッジ時間 | 3,156 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = (a); i < (b); ++i)
#define REP(i,n) FOR(i,0,n)
#define SZ(n) (int)(n).size()
#define ALL(n) (n).begin(), (n).end()
#define MOD 1000003
#define INF 100000000
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int, int> PI;
int main() {
int d;
int a[10101] = {};
cin >> d;
REP(i, d + 1) {
cin >> a[i];
}
for (int i = d; 2 < i; --i) {
a[i - 2] += a[i];
}
if (a[2]) {
cout << 2 << endl;
cout << a[0] << " " << a[1] << " " << a[2] << endl;
}
else if (a[1]) {
cout << 1 << endl;
cout << a[0] << " " << a[1] << endl;
}
else {
cout << 0 << endl;
cout << a[0] << endl;
}
return 0;
}