結果

問題 No.40 多項式の割り算
ユーザー ぴろずぴろず
提出日時 2014-12-21 12:31:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 47,168 KB
最終ジャッジ日時 2024-06-12 03:03:51
合計ジャッジ時間 8,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,352 KB
testcase_01 AC 115 ms
41,192 KB
testcase_02 AC 116 ms
41,240 KB
testcase_03 AC 103 ms
41,196 KB
testcase_04 AC 184 ms
45,760 KB
testcase_05 AC 209 ms
45,676 KB
testcase_06 AC 238 ms
46,172 KB
testcase_07 AC 220 ms
47,168 KB
testcase_08 AC 137 ms
41,788 KB
testcase_09 AC 200 ms
45,960 KB
testcase_10 AC 206 ms
46,728 KB
testcase_11 AC 191 ms
45,584 KB
testcase_12 AC 191 ms
44,240 KB
testcase_13 AC 218 ms
45,552 KB
testcase_14 AC 206 ms
46,016 KB
testcase_15 AC 203 ms
46,044 KB
testcase_16 AC 225 ms
46,920 KB
testcase_17 AC 178 ms
44,052 KB
testcase_18 AC 220 ms
46,036 KB
testcase_19 AC 218 ms
46,824 KB
testcase_20 AC 200 ms
45,428 KB
testcase_21 AC 174 ms
43,508 KB
testcase_22 AC 159 ms
43,440 KB
testcase_23 AC 183 ms
45,872 KB
testcase_24 AC 214 ms
45,808 KB
testcase_25 AC 111 ms
41,436 KB
testcase_26 AC 121 ms
41,156 KB
testcase_27 AC 117 ms
41,504 KB
testcase_28 AC 105 ms
41,396 KB
testcase_29 AC 106 ms
41,196 KB
testcase_30 AC 118 ms
40,084 KB
testcase_31 AC 122 ms
41,484 KB
testcase_32 AC 125 ms
41,232 KB
testcase_33 AC 123 ms
41,376 KB
testcase_34 AC 117 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no040;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int[] a = new int[d+1];
		for(int i=0;i<=d;i++) {
			a[i] = sc.nextInt();
		}
		for(int i=0;i<=d-3;i++) {
			a[d-i-2] += a[d-i];
			a[d-i] = 0;
		}
		int d_ = 0;
		for(int i=0;i<=d;i++) {
			if (a[i] != 0) {
				d_ = i;
			}
		}
		System.out.println(d_);
		StringBuilder sb = new StringBuilder();
		for(int i=0;i<=d_;i++) {
			if (i > 0) {
				sb.append(' ');
			}
			sb.append(a[i]);
		}
		System.out.println(sb.toString());
	}

}
0