結果

問題 No.40 多項式の割り算
ユーザー htensaihtensai
提出日時 2020-02-14 10:41:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 77,008 KB
実行使用メモリ 48,840 KB
最終ジャッジ日時 2024-10-06 07:45:02
合計ジャッジ時間 11,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
42,252 KB
testcase_01 AC 164 ms
42,280 KB
testcase_02 AC 133 ms
41,160 KB
testcase_03 AC 157 ms
42,264 KB
testcase_04 AC 265 ms
47,132 KB
testcase_05 AC 281 ms
47,912 KB
testcase_06 AC 288 ms
48,784 KB
testcase_07 AC 291 ms
48,840 KB
testcase_08 AC 185 ms
42,836 KB
testcase_09 AC 274 ms
48,044 KB
testcase_10 AC 289 ms
48,740 KB
testcase_11 AC 268 ms
47,868 KB
testcase_12 AC 264 ms
46,368 KB
testcase_13 AC 290 ms
48,676 KB
testcase_14 AC 269 ms
47,720 KB
testcase_15 AC 269 ms
47,476 KB
testcase_16 AC 295 ms
48,364 KB
testcase_17 AC 245 ms
44,992 KB
testcase_18 AC 289 ms
48,408 KB
testcase_19 AC 291 ms
48,652 KB
testcase_20 AC 267 ms
47,104 KB
testcase_21 AC 238 ms
46,040 KB
testcase_22 AC 237 ms
45,092 KB
testcase_23 AC 260 ms
47,072 KB
testcase_24 AC 279 ms
48,124 KB
testcase_25 AC 165 ms
42,624 KB
testcase_26 AC 167 ms
42,328 KB
testcase_27 AC 170 ms
42,376 KB
testcase_28 AC 134 ms
41,088 KB
testcase_29 AC 168 ms
42,412 KB
testcase_30 AC 167 ms
42,488 KB
testcase_31 AC 162 ms
42,500 KB
testcase_32 AC 165 ms
42,276 KB
testcase_33 AC 168 ms
42,672 KB
testcase_34 AC 166 ms
42,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int[] arr = new int[d + 1];
		for (int i = 0; i <= d; i++) {
		    arr[i] = sc.nextInt();
		}
		for (int i = d; i >= 3; i--) {
		    int x = arr[i];
		    arr[i - 2] += x;
		    arr[i] = 0;
		}
		if (d >= 2 && arr[2] != 0) {
		    System.out.println(2);
		    System.out.println(arr[0] + " " + arr[1] + " " + arr[2]);
		} else if (d >= 1 && arr[1] != 0) {
		    System.out.println(1);
		    System.out.println(arr[0] + " " + arr[1]);
		} else {
		    System.out.println(0);
		    System.out.println(arr[0]);
		}
   }
}
0