結果

問題 No.40 多項式の割り算
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 05:53:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 1,140 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 47,648 KB
最終ジャッジ日時 2024-07-04 01:34:53
合計ジャッジ時間 10,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,768 KB
testcase_01 AC 134 ms
41,524 KB
testcase_02 AC 99 ms
40,112 KB
testcase_03 AC 114 ms
40,424 KB
testcase_04 AC 222 ms
46,656 KB
testcase_05 AC 230 ms
46,980 KB
testcase_06 AC 238 ms
47,648 KB
testcase_07 AC 241 ms
47,472 KB
testcase_08 AC 135 ms
41,768 KB
testcase_09 AC 212 ms
46,248 KB
testcase_10 AC 229 ms
47,388 KB
testcase_11 AC 215 ms
46,316 KB
testcase_12 AC 223 ms
45,176 KB
testcase_13 AC 224 ms
47,600 KB
testcase_14 AC 229 ms
46,540 KB
testcase_15 AC 222 ms
46,404 KB
testcase_16 AC 247 ms
47,228 KB
testcase_17 AC 205 ms
43,936 KB
testcase_18 AC 243 ms
46,148 KB
testcase_19 AC 235 ms
47,304 KB
testcase_20 AC 217 ms
46,048 KB
testcase_21 AC 194 ms
43,240 KB
testcase_22 AC 197 ms
43,248 KB
testcase_23 AC 215 ms
46,200 KB
testcase_24 AC 234 ms
46,728 KB
testcase_25 AC 129 ms
41,692 KB
testcase_26 AC 113 ms
39,980 KB
testcase_27 AC 130 ms
41,356 KB
testcase_28 AC 114 ms
41,160 KB
testcase_29 AC 125 ms
41,364 KB
testcase_30 AC 130 ms
41,416 KB
testcase_31 AC 117 ms
40,120 KB
testcase_32 AC 114 ms
40,444 KB
testcase_33 AC 132 ms
41,764 KB
testcase_34 AC 115 ms
40,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.40 多項式の割り算

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No40 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        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;
        }
        int dim = 0;
        for (int i=0; i<min(3,d+1); i++) {
            if (a[i] != 0) dim = i;
        }
        out.println(dim);
        for (int i=0; i<=dim; i++) {
            if (i != dim) out.print(a[i]+" ");
            else out.println(a[i]);
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0