結果

問題 No.40 多項式の割り算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 23:20:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 256 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 47,088 KB
最終ジャッジ日時 2024-11-28 03:18:01
合計ジャッジ時間 9,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,056 KB
testcase_01 AC 130 ms
41,564 KB
testcase_02 AC 133 ms
41,236 KB
testcase_03 AC 118 ms
40,020 KB
testcase_04 AC 226 ms
46,144 KB
testcase_05 AC 237 ms
45,776 KB
testcase_06 AC 250 ms
47,088 KB
testcase_07 AC 256 ms
46,404 KB
testcase_08 AC 170 ms
41,808 KB
testcase_09 AC 224 ms
46,016 KB
testcase_10 AC 245 ms
46,412 KB
testcase_11 AC 225 ms
46,188 KB
testcase_12 AC 213 ms
44,028 KB
testcase_13 AC 238 ms
45,632 KB
testcase_14 AC 228 ms
46,096 KB
testcase_15 AC 231 ms
45,728 KB
testcase_16 AC 243 ms
46,184 KB
testcase_17 AC 203 ms
43,412 KB
testcase_18 AC 240 ms
45,852 KB
testcase_19 AC 247 ms
46,200 KB
testcase_20 AC 217 ms
45,520 KB
testcase_21 AC 195 ms
43,384 KB
testcase_22 AC 200 ms
43,008 KB
testcase_23 AC 218 ms
45,404 KB
testcase_24 AC 233 ms
45,940 KB
testcase_25 AC 129 ms
41,252 KB
testcase_26 AC 131 ms
41,392 KB
testcase_27 AC 130 ms
41,012 KB
testcase_28 AC 131 ms
41,144 KB
testcase_29 AC 134 ms
41,464 KB
testcase_30 AC 133 ms
41,044 KB
testcase_31 AC 130 ms
41,400 KB
testcase_32 AC 115 ms
40,028 KB
testcase_33 AC 130 ms
40,932 KB
testcase_34 AC 128 ms
41,148 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 [] 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 c=0;
        for(int i=D; i>=0; i--){
            if(a[i]!=0){
                c=i;
                break;
            }
        }
        System.out.println(c);
        for(int i=0; i<=c; i++){
            System.out.print(a[i]);
            if(i!=c){System.out.print(" ");}
        }
        System.out.println();
    }
}
0