結果

問題 No.40 多項式の割り算
ユーザー soujikisoujiki
提出日時 2015-04-27 11:42:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 79,300 KB
実行使用メモリ 47,620 KB
最終ジャッジ日時 2024-07-05 04:49:15
合計ジャッジ時間 11,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 141 ms
41,648 KB
testcase_02 AC 143 ms
42,268 KB
testcase_03 AC 141 ms
41,376 KB
testcase_04 AC 246 ms
45,976 KB
testcase_05 AC 246 ms
46,296 KB
testcase_06 AC 252 ms
46,920 KB
testcase_07 AC 260 ms
46,936 KB
testcase_08 AC 164 ms
42,204 KB
testcase_09 AC 245 ms
45,932 KB
testcase_10 AC 256 ms
46,892 KB
testcase_11 AC 235 ms
45,688 KB
testcase_12 AC 227 ms
44,640 KB
testcase_13 AC 261 ms
47,620 KB
testcase_14 AC 238 ms
46,316 KB
testcase_15 AC 241 ms
46,096 KB
testcase_16 AC 258 ms
47,356 KB
testcase_17 AC 222 ms
44,140 KB
testcase_18 AC 255 ms
47,020 KB
testcase_19 AC 266 ms
46,936 KB
testcase_20 AC 239 ms
46,048 KB
testcase_21 AC 210 ms
43,828 KB
testcase_22 AC 207 ms
43,172 KB
testcase_23 AC 222 ms
45,816 KB
testcase_24 AC 242 ms
46,172 KB
testcase_25 AC 139 ms
41,612 KB
testcase_26 AC 136 ms
41,324 KB
testcase_27 AC 126 ms
40,492 KB
testcase_28 WA -
testcase_29 AC 143 ms
41,624 KB
testcase_30 AC 134 ms
40,540 KB
testcase_31 AC 131 ms
40,272 KB
testcase_32 WA -
testcase_33 AC 129 ms
40,548 KB
testcase_34 AC 127 ms
40,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_40{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int D = stdIn.nextInt();
		int[] b = new int[D+1];
		for(int i=0;i<D+1;i++){
			b[i] = stdIn.nextInt();
		}

		if(D<=2){
			System.out.println(D);
			for(int i=D;i>=0;i--){
				if(i==0){
					System.out.println(b[i]);
				}
				System.out.print(b[i]+" ");
			}
		}
		else{
			for(int i=D;i>=3;i--){
				b[i-2] = b[i-2] + b[i];
				b[i] = 0;
			}

			for(int i=2;i>=0;i--){
				if(b[i] != 0){
					System.out.println(i);
					for(int j=0;j<=i;j++){
						if(j==i){
							System.out.println(b[j]);
							break;
						}
						System.out.print(b[j]+" ");
					}
					break;
				}
				if(i==0){
					System.out.println(i+"\n"+i);
				}
			}
		}

	}
}
0