結果

問題 No.40 多項式の割り算
ユーザー GrenacheGrenache
提出日時 2015-11-03 16:50:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 787 bytes
コンパイル時間 3,530 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 57,736 KB
最終ジャッジ日時 2024-09-13 12:10:26
合計ジャッジ時間 11,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,256 KB
testcase_01 AC 136 ms
53,956 KB
testcase_02 AC 135 ms
53,936 KB
testcase_03 AC 134 ms
54,536 KB
testcase_04 AC 225 ms
57,172 KB
testcase_05 AC 239 ms
57,480 KB
testcase_06 AC 251 ms
57,524 KB
testcase_07 AC 253 ms
57,736 KB
testcase_08 AC 159 ms
54,368 KB
testcase_09 AC 236 ms
57,276 KB
testcase_10 AC 249 ms
57,440 KB
testcase_11 AC 224 ms
57,496 KB
testcase_12 AC 213 ms
56,716 KB
testcase_13 AC 248 ms
57,556 KB
testcase_14 AC 227 ms
57,536 KB
testcase_15 AC 232 ms
57,324 KB
testcase_16 AC 248 ms
57,512 KB
testcase_17 AC 203 ms
56,296 KB
testcase_18 AC 239 ms
57,476 KB
testcase_19 AC 251 ms
57,640 KB
testcase_20 AC 204 ms
57,192 KB
testcase_21 AC 201 ms
56,652 KB
testcase_22 AC 206 ms
56,264 KB
testcase_23 AC 222 ms
57,244 KB
testcase_24 AC 239 ms
57,636 KB
testcase_25 AC 135 ms
53,804 KB
testcase_26 AC 134 ms
54,048 KB
testcase_27 AC 133 ms
54,060 KB
testcase_28 AC 134 ms
54,028 KB
testcase_29 AC 135 ms
53,768 KB
testcase_30 AC 133 ms
53,872 KB
testcase_31 AC 133 ms
53,944 KB
testcase_32 AC 131 ms
53,836 KB
testcase_33 AC 135 ms
53,956 KB
testcase_34 AC 135 ms
53,884 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 (d > 1 && a[2] != 0) {
        	System.out.println("2");
        	System.out.printf("%d %d %d\n", a[0], a[1], a[2]);
        } else if (d > 0 && 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