結果

問題 No.40 多項式の割り算
ユーザー YamaKasaYamaKasa
提出日時 2018-06-19 00:54:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 890 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 79,572 KB
実行使用メモリ 59,840 KB
最終ジャッジ日時 2024-06-30 17:09:32
合計ジャッジ時間 11,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
54,900 KB
testcase_01 AC 167 ms
54,924 KB
testcase_02 AC 132 ms
53,932 KB
testcase_03 AC 155 ms
54,828 KB
testcase_04 AC 268 ms
59,096 KB
testcase_05 AC 285 ms
59,432 KB
testcase_06 AC 292 ms
59,808 KB
testcase_07 AC 291 ms
59,712 KB
testcase_08 AC 190 ms
55,540 KB
testcase_09 AC 275 ms
59,524 KB
testcase_10 AC 288 ms
59,612 KB
testcase_11 AC 266 ms
58,868 KB
testcase_12 AC 257 ms
58,060 KB
testcase_13 AC 288 ms
59,840 KB
testcase_14 AC 262 ms
58,132 KB
testcase_15 AC 270 ms
59,260 KB
testcase_16 AC 286 ms
59,764 KB
testcase_17 AC 248 ms
58,172 KB
testcase_18 AC 286 ms
59,492 KB
testcase_19 AC 292 ms
59,760 KB
testcase_20 AC 264 ms
59,052 KB
testcase_21 AC 240 ms
57,212 KB
testcase_22 AC 237 ms
58,800 KB
testcase_23 AC 260 ms
57,920 KB
testcase_24 AC 279 ms
59,212 KB
testcase_25 AC 172 ms
55,148 KB
testcase_26 AC 171 ms
55,032 KB
testcase_27 AC 171 ms
55,208 KB
testcase_28 AC 131 ms
54,320 KB
testcase_29 AC 167 ms
54,736 KB
testcase_30 AC 171 ms
55,024 KB
testcase_31 AC 166 ms
55,144 KB
testcase_32 AC 170 ms
55,008 KB
testcase_33 AC 170 ms
55,120 KB
testcase_34 AC 171 ms
55,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int D = scan.nextInt();
		int []a = new int[D + 1];
		for(int i = 0; i <= D; i++) {
			a[i] = scan.nextInt();
		}
		scan.close();
		int r0 = a[0];
		int f1 = sub(a, 1);
		int f2 = sub(a, -1);
		//double r1 = (double)(f1 - f2) / 2;
		//double r2 = -r0 + (double)(f1 + f2) / 2;
		int r1 = (f1 - f2) / 2;
		int r2 = -r0 + (f1 + f2) / 2;
		if(r2 == 0) {
			if(r1 == 0) {
				System.out.println(0);
				System.out.println(r0);
			}else {
				System.out.println(1);
				System.out.println(r0 + " " + r1);
			}
		}else {
			System.out.println(2);
			System.out.println(r0 + " " + r1 + " " + r2);
		}

	}
	public static int sub(int[] a, int k) {
		int t = a[0];
		int x = 1;
		for(int i = 1; i < a.length; i++) {
			x = x * k;
			t += a[i] * x;
		}
		return t;
	}
}
0