結果

問題 No.40 多項式の割り算
ユーザー krotonkroton
提出日時 2014-10-12 20:11:45
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 54,772 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 08:42:28
合計ジャッジ時間 2,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int D;
int a[10010];

int f(int x){
	int res = 0;
	for(int i=0,p=1;i<=D;i++,p*=x)res += a[i] * p;
	return res;
}

int main() {
	cin >> D;
	for(int i=0;i<=D;i++)cin >> a[i];

	int c = f(0);
	int b = (f(1) - f(-1)) / 2;
	int a = f(1) - b - c;
	
	int res[] = {c, b, a};
	int deg = 2;

	while(deg > 0 && res[deg] == 0)--deg;

	cout << deg << endl;
	for(int i=0;i<=deg;i++){
		if(i != 0)cout << " ";
		cout << res[i];
	}

	return 0;
}
0