結果

問題 No.40 多項式の割り算
ユーザー scachescache
提出日時 2014-11-25 17:33:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 299 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 3,442 ms
コンパイル使用メモリ 81,180 KB
実行使用メモリ 48,704 KB
最終ジャッジ日時 2025-01-02 21:51:11
合計ジャッジ時間 11,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,684 KB
testcase_01 AC 134 ms
41,904 KB
testcase_02 AC 120 ms
41,692 KB
testcase_03 AC 131 ms
41,964 KB
testcase_04 AC 237 ms
48,464 KB
testcase_05 AC 245 ms
48,132 KB
testcase_06 AC 252 ms
48,164 KB
testcase_07 AC 299 ms
48,524 KB
testcase_08 AC 163 ms
42,624 KB
testcase_09 AC 233 ms
48,704 KB
testcase_10 AC 245 ms
48,652 KB
testcase_11 AC 231 ms
48,180 KB
testcase_12 AC 203 ms
46,944 KB
testcase_13 AC 240 ms
47,792 KB
testcase_14 AC 239 ms
48,468 KB
testcase_15 AC 239 ms
48,244 KB
testcase_16 AC 256 ms
48,092 KB
testcase_17 AC 194 ms
45,860 KB
testcase_18 AC 238 ms
47,984 KB
testcase_19 AC 251 ms
48,684 KB
testcase_20 AC 226 ms
47,876 KB
testcase_21 AC 200 ms
45,884 KB
testcase_22 AC 209 ms
45,344 KB
testcase_23 AC 234 ms
48,108 KB
testcase_24 AC 244 ms
48,124 KB
testcase_25 AC 132 ms
42,048 KB
testcase_26 AC 135 ms
41,796 KB
testcase_27 AC 130 ms
41,704 KB
testcase_28 AC 114 ms
41,556 KB
testcase_29 AC 125 ms
42,028 KB
testcase_30 AC 129 ms
41,932 KB
testcase_31 AC 128 ms
41,924 KB
testcase_32 AC 132 ms
42,088 KB
testcase_33 AC 128 ms
41,828 KB
testcase_34 AC 132 ms
41,792 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