結果

問題 No.40 多項式の割り算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 23:13:49
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 697 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 46,320 KB
最終ジャッジ日時 2024-11-28 03:17:50
合計ジャッジ時間 9,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 121 ms
41,296 KB
testcase_02 AC 117 ms
41,288 KB
testcase_03 AC 116 ms
40,172 KB
testcase_04 AC 202 ms
45,416 KB
testcase_05 AC 216 ms
45,840 KB
testcase_06 AC 225 ms
46,248 KB
testcase_07 AC 231 ms
46,048 KB
testcase_08 AC 154 ms
41,420 KB
testcase_09 AC 225 ms
45,628 KB
testcase_10 AC 222 ms
46,100 KB
testcase_11 AC 220 ms
45,432 KB
testcase_12 AC 205 ms
44,120 KB
testcase_13 AC 244 ms
46,256 KB
testcase_14 AC 224 ms
45,872 KB
testcase_15 AC 230 ms
45,628 KB
testcase_16 AC 246 ms
46,320 KB
testcase_17 AC 191 ms
43,492 KB
testcase_18 AC 237 ms
46,004 KB
testcase_19 AC 246 ms
46,260 KB
testcase_20 AC 205 ms
45,384 KB
testcase_21 AC 173 ms
43,076 KB
testcase_22 AC 172 ms
42,840 KB
testcase_23 AC 196 ms
45,340 KB
testcase_24 AC 208 ms
45,804 KB
testcase_25 AC 121 ms
41,308 KB
testcase_26 WA -
testcase_27 AC 128 ms
40,956 KB
testcase_28 AC 128 ms
40,956 KB
testcase_29 AC 126 ms
41,316 KB
testcase_30 AC 128 ms
41,208 KB
testcase_31 AC 114 ms
41,324 KB
testcase_32 WA -
testcase_33 AC 123 ms
41,308 KB
testcase_34 AC 127 ms
41,216 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