結果

問題 No.40 多項式の割り算
ユーザー htensaihtensai
提出日時 2020-02-14 10:39:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 648 bytes
コンパイル時間 2,578 ms
コンパイル使用メモリ 76,540 KB
実行使用メモリ 48,844 KB
最終ジャッジ日時 2024-10-06 07:44:36
合計ジャッジ時間 11,164 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
42,616 KB
testcase_01 AC 160 ms
42,392 KB
testcase_02 AC 131 ms
41,264 KB
testcase_03 AC 152 ms
42,112 KB
testcase_04 AC 264 ms
47,580 KB
testcase_05 AC 275 ms
47,684 KB
testcase_06 AC 288 ms
48,708 KB
testcase_07 AC 291 ms
48,580 KB
testcase_08 AC 194 ms
43,172 KB
testcase_09 AC 268 ms
47,636 KB
testcase_10 AC 287 ms
48,600 KB
testcase_11 AC 259 ms
46,580 KB
testcase_12 AC 246 ms
45,924 KB
testcase_13 AC 287 ms
48,844 KB
testcase_14 AC 267 ms
47,892 KB
testcase_15 AC 264 ms
47,504 KB
testcase_16 AC 284 ms
48,820 KB
testcase_17 AC 237 ms
45,380 KB
testcase_18 AC 280 ms
48,068 KB
testcase_19 AC 290 ms
48,772 KB
testcase_20 AC 261 ms
46,992 KB
testcase_21 AC 237 ms
44,976 KB
testcase_22 AC 229 ms
45,836 KB
testcase_23 AC 262 ms
47,316 KB
testcase_24 AC 276 ms
47,676 KB
testcase_25 AC 163 ms
42,496 KB
testcase_26 AC 167 ms
42,548 KB
testcase_27 AC 162 ms
42,664 KB
testcase_28 RE -
testcase_29 AC 147 ms
42,400 KB
testcase_30 AC 161 ms
42,336 KB
testcase_31 AC 150 ms
42,220 KB
testcase_32 AC 160 ms
42,576 KB
testcase_33 AC 149 ms
42,384 KB
testcase_34 AC 149 ms
42,280 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 (arr[2] != 0) {
		    System.out.println(2);
		    System.out.println(arr[0] + " " + arr[1] + " " + arr[2]);
		} else if (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