結果

問題 No.40 多項式の割り算
ユーザー GrenacheGrenache
提出日時 2015-11-03 16:44:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 769 bytes
コンパイル時間 3,352 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 58,264 KB
最終ジャッジ日時 2024-09-13 12:09:38
合計ジャッジ時間 11,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,096 KB
testcase_01 AC 132 ms
53,916 KB
testcase_02 AC 132 ms
54,236 KB
testcase_03 AC 130 ms
54,040 KB
testcase_04 AC 228 ms
57,484 KB
testcase_05 AC 237 ms
57,396 KB
testcase_06 AC 253 ms
58,264 KB
testcase_07 AC 251 ms
57,712 KB
testcase_08 AC 164 ms
54,536 KB
testcase_09 AC 224 ms
57,200 KB
testcase_10 AC 246 ms
57,372 KB
testcase_11 AC 228 ms
57,284 KB
testcase_12 AC 212 ms
56,488 KB
testcase_13 AC 243 ms
57,560 KB
testcase_14 AC 225 ms
57,328 KB
testcase_15 AC 225 ms
57,336 KB
testcase_16 AC 250 ms
57,540 KB
testcase_17 AC 204 ms
56,576 KB
testcase_18 AC 242 ms
57,468 KB
testcase_19 AC 253 ms
57,636 KB
testcase_20 AC 224 ms
57,324 KB
testcase_21 AC 204 ms
56,628 KB
testcase_22 AC 201 ms
57,024 KB
testcase_23 AC 220 ms
57,220 KB
testcase_24 AC 234 ms
57,484 KB
testcase_25 AC 137 ms
54,232 KB
testcase_26 AC 134 ms
54,124 KB
testcase_27 AC 133 ms
54,032 KB
testcase_28 RE -
testcase_29 AC 135 ms
53,952 KB
testcase_30 AC 134 ms
54,400 KB
testcase_31 AC 136 ms
54,172 KB
testcase_32 AC 133 ms
54,044 KB
testcase_33 AC 134 ms
54,188 KB
testcase_34 AC 133 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder40 {

    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 = d; i >= 3; i--) {
        	a[i - 2] -= -a[i];
        	a[i] = 0;
        }

        if (a[2] != 0) {
        	System.out.println("2");
        	System.out.printf("%d %d %d\n", a[0], a[1], a[2]);
        } else if (a[1] != 0) {
        	System.out.println("1");
        	System.out.printf("%d %d\n", a[0], a[1]);
        } else {
        	System.out.println("0");
        	System.out.printf("%d\n", a[0]);
        }

        sc.close();
    }
}
0