結果

問題 No.40 多項式の割り算
ユーザー fjafjafjafjafjafja
提出日時 2017-10-01 22:30:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 3,757 ms
コンパイル使用メモリ 78,676 KB
実行使用メモリ 58,440 KB
最終ジャッジ日時 2024-11-15 21:47:56
合計ジャッジ時間 11,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,124 KB
testcase_01 AC 143 ms
54,104 KB
testcase_02 AC 124 ms
54,212 KB
testcase_03 AC 123 ms
52,868 KB
testcase_04 AC 227 ms
57,616 KB
testcase_05 AC 247 ms
57,816 KB
testcase_06 AC 258 ms
58,284 KB
testcase_07 AC 256 ms
58,340 KB
testcase_08 AC 156 ms
54,276 KB
testcase_09 AC 238 ms
57,576 KB
testcase_10 AC 253 ms
57,764 KB
testcase_11 AC 231 ms
57,852 KB
testcase_12 AC 208 ms
56,752 KB
testcase_13 AC 251 ms
58,080 KB
testcase_14 AC 237 ms
57,544 KB
testcase_15 AC 233 ms
57,944 KB
testcase_16 AC 254 ms
57,960 KB
testcase_17 AC 212 ms
56,960 KB
testcase_18 AC 261 ms
57,580 KB
testcase_19 AC 254 ms
58,252 KB
testcase_20 AC 230 ms
57,412 KB
testcase_21 AC 210 ms
57,012 KB
testcase_22 AC 209 ms
56,672 KB
testcase_23 AC 225 ms
57,608 KB
testcase_24 AC 235 ms
58,440 KB
testcase_25 AC 137 ms
53,828 KB
testcase_26 AC 138 ms
54,468 KB
testcase_27 AC 144 ms
54,264 KB
testcase_28 AC 140 ms
54,204 KB
testcase_29 AC 138 ms
53,872 KB
testcase_30 AC 139 ms
54,148 KB
testcase_31 AC 139 ms
54,152 KB
testcase_32 AC 141 ms
53,984 KB
testcase_33 AC 138 ms
53,956 KB
testcase_34 AC 142 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N40 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d=sc.nextInt();
		int[] a=new int[d+1];
		int dd=-1;
		int[] b=new int[3];
		int[] buf=new int[d+1];
		for(int i=d;i>=0;i--){
			buf[i]=sc.nextInt();
		}
		for(int i=0;i<=d;i++){
			a[i]+=buf[i];
			if(i<d-2){
				a[i+2]+=a[i];
				a[i]=0;
			}
		}
		int ind=0;
		for(int i=0;i<=d;i++){
			if(dd==-1&&a[i]!=0){
				dd=d-i;
				ind=i;
			}
		}
		if(dd==-1){
			System.out.println(0+"\n"+0);
		}
		else{
			System.out.println(dd);
			for(int i=d;i>=ind;i--){
				System.out.print(a[i]+" ");
			}
		}
	}
}
0