結果

問題 No.40 多項式の割り算
ユーザー kano_townkano_town
提出日時 2014-11-22 12:29:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 4,030 ms
コンパイル使用メモリ 86,556 KB
実行使用メモリ 47,748 KB
最終ジャッジ日時 2024-06-10 21:33:17
合計ジャッジ時間 11,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 144 ms
41,684 KB
testcase_02 AC 126 ms
41,488 KB
testcase_03 AC 153 ms
41,764 KB
testcase_04 AC 246 ms
45,880 KB
testcase_05 AC 260 ms
45,724 KB
testcase_06 AC 255 ms
46,716 KB
testcase_07 AC 263 ms
47,748 KB
testcase_08 AC 167 ms
42,284 KB
testcase_09 AC 246 ms
45,908 KB
testcase_10 AC 253 ms
46,960 KB
testcase_11 AC 225 ms
46,128 KB
testcase_12 AC 220 ms
44,888 KB
testcase_13 AC 259 ms
46,784 KB
testcase_14 AC 246 ms
46,104 KB
testcase_15 AC 233 ms
46,092 KB
testcase_16 AC 255 ms
47,176 KB
testcase_17 AC 210 ms
43,968 KB
testcase_18 AC 244 ms
46,252 KB
testcase_19 AC 259 ms
46,488 KB
testcase_20 AC 227 ms
46,328 KB
testcase_21 AC 212 ms
44,300 KB
testcase_22 AC 212 ms
43,408 KB
testcase_23 AC 227 ms
46,072 KB
testcase_24 AC 243 ms
46,372 KB
testcase_25 AC 143 ms
41,456 KB
testcase_26 AC 145 ms
41,692 KB
testcase_27 AC 138 ms
41,660 KB
testcase_28 WA -
testcase_29 AC 138 ms
41,644 KB
testcase_30 AC 139 ms
41,308 KB
testcase_31 AC 141 ms
41,524 KB
testcase_32 AC 144 ms
41,732 KB
testcase_33 AC 138 ms
41,700 KB
testcase_34 AC 141 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder40 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int D = sc.nextInt() + 1;
		int[] a = new int[D];
		for (int i = 0; i < D; i++) a[D - i - 1] = sc.nextInt();

		for (int i = 0; i < D - 3; i++) {
			a[i + 2] += a[i];
			a[i] = 0;
		}

		int num = 0;
		for (int i = 0; i < D - 1; i++) if (a[i] != 0) num++;
		System.out.println(num);
		if (num == 0) System.out.print(0);
		else for (int i = 0; i < num + 1; i++) System.out.print(a[D - i - 1] + " ");
		System.out.println();
	}
}
0