結果

問題 No.40 多項式の割り算
ユーザー soujikisoujiki
提出日時 2015-04-27 11:46:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 81,100 KB
実行使用メモリ 47,168 KB
最終ジャッジ日時 2024-07-05 04:50:05
合計ジャッジ時間 11,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,632 KB
testcase_01 AC 139 ms
41,368 KB
testcase_02 AC 151 ms
41,752 KB
testcase_03 AC 142 ms
41,444 KB
testcase_04 AC 236 ms
46,156 KB
testcase_05 AC 247 ms
46,136 KB
testcase_06 AC 268 ms
47,084 KB
testcase_07 AC 261 ms
47,076 KB
testcase_08 AC 166 ms
42,004 KB
testcase_09 AC 240 ms
46,064 KB
testcase_10 AC 257 ms
46,916 KB
testcase_11 AC 240 ms
46,164 KB
testcase_12 AC 227 ms
44,636 KB
testcase_13 AC 258 ms
47,000 KB
testcase_14 AC 249 ms
45,992 KB
testcase_15 AC 238 ms
45,968 KB
testcase_16 AC 255 ms
46,768 KB
testcase_17 AC 215 ms
43,784 KB
testcase_18 AC 255 ms
46,192 KB
testcase_19 AC 274 ms
47,168 KB
testcase_20 AC 234 ms
45,936 KB
testcase_21 AC 214 ms
43,324 KB
testcase_22 AC 205 ms
43,312 KB
testcase_23 AC 228 ms
45,460 KB
testcase_24 AC 246 ms
46,032 KB
testcase_25 AC 144 ms
41,828 KB
testcase_26 AC 126 ms
40,652 KB
testcase_27 AC 141 ms
41,444 KB
testcase_28 AC 127 ms
41,320 KB
testcase_29 AC 139 ms
41,560 KB
testcase_30 AC 143 ms
41,720 KB
testcase_31 AC 141 ms
41,404 KB
testcase_32 AC 141 ms
41,708 KB
testcase_33 AC 141 ms
41,916 KB
testcase_34 AC 125 ms
40,060 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=0;i<=D;i++){
				if(i==D){
					System.out.println(b[i]);
					break;
				}
				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