結果

問題 No.40 多項式の割り算
ユーザー scachescache
提出日時 2014-11-25 17:33:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 78,780 KB
実行使用メモリ 58,792 KB
最終ジャッジ日時 2024-06-10 22:20:05
合計ジャッジ時間 10,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,224 KB
testcase_01 AC 119 ms
53,060 KB
testcase_02 AC 119 ms
54,072 KB
testcase_03 AC 130 ms
54,188 KB
testcase_04 AC 222 ms
57,804 KB
testcase_05 AC 235 ms
57,816 KB
testcase_06 AC 251 ms
58,332 KB
testcase_07 AC 252 ms
58,136 KB
testcase_08 AC 150 ms
54,008 KB
testcase_09 AC 231 ms
57,576 KB
testcase_10 AC 235 ms
58,300 KB
testcase_11 AC 218 ms
57,456 KB
testcase_12 AC 212 ms
57,024 KB
testcase_13 AC 244 ms
58,740 KB
testcase_14 AC 242 ms
57,680 KB
testcase_15 AC 224 ms
57,988 KB
testcase_16 AC 244 ms
58,792 KB
testcase_17 AC 198 ms
56,888 KB
testcase_18 AC 237 ms
58,172 KB
testcase_19 AC 247 ms
58,324 KB
testcase_20 AC 211 ms
57,832 KB
testcase_21 AC 193 ms
57,120 KB
testcase_22 AC 194 ms
56,980 KB
testcase_23 AC 215 ms
57,444 KB
testcase_24 AC 238 ms
58,704 KB
testcase_25 AC 116 ms
53,204 KB
testcase_26 AC 132 ms
54,068 KB
testcase_27 AC 131 ms
54,036 KB
testcase_28 AC 117 ms
54,136 KB
testcase_29 AC 133 ms
54,484 KB
testcase_30 AC 127 ms
54,416 KB
testcase_31 AC 136 ms
56,052 KB
testcase_32 AC 130 ms
54,176 KB
testcase_33 AC 133 ms
54,492 KB
testcase_34 AC 119 ms
53,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main40 {
	public static void main(String[] args) {
		Main40 p = new Main40();
	}

	public Main40() {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int[] a = new int[d+1];
		for(int i=a.length-1;i>=0;i--){
			a[i] = sc.nextInt();
		}
		
		solve(a);
	}

	public void solve(int[] a) {
		for(int i=0;i<a.length-3;i++){
			a[i+2] += a[i];
			a[i] = 0;
		}
		
		int first = 0;
		while(first < a.length && a[first]==0){
			first++;
		}
		
		if(first == a.length){
			System.out.println("0\n0");
		}else{
			System.out.println(a.length-first-1);
			for(int i=a.length-1;first<i;i--)
				System.out.print(a[i]+" ");
			System.out.println(a[first]);
		}
	}

}
0