結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
41,172 KB
testcase_02 AC 136 ms
41,056 KB
testcase_03 AC 138 ms
41,116 KB
testcase_04 AC 233 ms
45,360 KB
testcase_05 AC 239 ms
45,596 KB
testcase_06 AC 258 ms
45,996 KB
testcase_07 AC 258 ms
45,984 KB
testcase_08 AC 170 ms
41,636 KB
testcase_09 AC 231 ms
45,760 KB
testcase_10 AC 254 ms
45,912 KB
testcase_11 AC 230 ms
45,376 KB
testcase_12 AC 214 ms
43,924 KB
testcase_13 AC 252 ms
45,436 KB
testcase_14 AC 230 ms
45,320 KB
testcase_15 AC 233 ms
45,492 KB
testcase_16 AC 250 ms
45,892 KB
testcase_17 AC 211 ms
43,372 KB
testcase_18 AC 245 ms
45,548 KB
testcase_19 AC 258 ms
46,020 KB
testcase_20 AC 228 ms
45,236 KB
testcase_21 AC 206 ms
42,972 KB
testcase_22 AC 201 ms
42,856 KB
testcase_23 AC 216 ms
45,500 KB
testcase_24 AC 242 ms
45,616 KB
testcase_25 AC 137 ms
41,156 KB
testcase_26 WA -
testcase_27 AC 137 ms
41,204 KB
testcase_28 AC 136 ms
41,100 KB
testcase_29 AC 137 ms
41,192 KB
testcase_30 AC 137 ms
41,200 KB
testcase_31 AC 137 ms
41,180 KB
testcase_32 WA -
testcase_33 AC 137 ms
41,032 KB
testcase_34 AC 139 ms
41,020 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-3; 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