結果

問題 No.40 多項式の割り算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 23:20:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 46,016 KB
最終ジャッジ日時 2024-05-06 01:25:07
合計ジャッジ時間 10,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,196 KB
testcase_01 AC 136 ms
41,204 KB
testcase_02 AC 135 ms
41,244 KB
testcase_03 AC 140 ms
41,212 KB
testcase_04 AC 233 ms
45,212 KB
testcase_05 AC 245 ms
45,744 KB
testcase_06 AC 257 ms
45,840 KB
testcase_07 AC 262 ms
45,892 KB
testcase_08 AC 164 ms
41,736 KB
testcase_09 AC 233 ms
45,544 KB
testcase_10 AC 260 ms
45,864 KB
testcase_11 AC 231 ms
45,172 KB
testcase_12 AC 223 ms
44,264 KB
testcase_13 AC 251 ms
45,484 KB
testcase_14 AC 234 ms
45,428 KB
testcase_15 AC 234 ms
45,544 KB
testcase_16 AC 260 ms
46,016 KB
testcase_17 AC 228 ms
43,576 KB
testcase_18 AC 255 ms
45,444 KB
testcase_19 AC 253 ms
45,904 KB
testcase_20 AC 227 ms
45,236 KB
testcase_21 AC 194 ms
42,780 KB
testcase_22 AC 192 ms
42,640 KB
testcase_23 AC 232 ms
45,344 KB
testcase_24 AC 246 ms
45,568 KB
testcase_25 AC 137 ms
41,032 KB
testcase_26 AC 139 ms
41,044 KB
testcase_27 AC 148 ms
40,968 KB
testcase_28 AC 137 ms
41,336 KB
testcase_29 AC 136 ms
41,500 KB
testcase_30 AC 134 ms
41,440 KB
testcase_31 AC 134 ms
41,120 KB
testcase_32 AC 133 ms
40,912 KB
testcase_33 AC 136 ms
41,228 KB
testcase_34 AC 139 ms
40,896 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