結果

問題 No.40 多項式の割り算
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 15:25:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 5,000 ms
コード長 1,217 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 79,368 KB
実行使用メモリ 48,520 KB
最終ジャッジ日時 2024-07-04 10:46:08
合計ジャッジ時間 10,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,164 KB
testcase_01 AC 134 ms
42,052 KB
testcase_02 AC 120 ms
41,376 KB
testcase_03 AC 150 ms
42,348 KB
testcase_04 AC 249 ms
47,272 KB
testcase_05 AC 257 ms
48,132 KB
testcase_06 AC 275 ms
48,316 KB
testcase_07 AC 279 ms
48,336 KB
testcase_08 AC 179 ms
43,144 KB
testcase_09 AC 254 ms
47,568 KB
testcase_10 AC 268 ms
48,132 KB
testcase_11 AC 258 ms
48,056 KB
testcase_12 AC 232 ms
45,484 KB
testcase_13 AC 269 ms
48,492 KB
testcase_14 AC 255 ms
48,192 KB
testcase_15 AC 248 ms
47,088 KB
testcase_16 AC 260 ms
48,296 KB
testcase_17 AC 220 ms
44,752 KB
testcase_18 AC 264 ms
48,464 KB
testcase_19 AC 267 ms
48,520 KB
testcase_20 AC 236 ms
46,660 KB
testcase_21 AC 223 ms
46,208 KB
testcase_22 AC 214 ms
44,496 KB
testcase_23 AC 262 ms
47,680 KB
testcase_24 AC 262 ms
48,156 KB
testcase_25 AC 143 ms
41,976 KB
testcase_26 AC 155 ms
42,540 KB
testcase_27 AC 139 ms
42,168 KB
testcase_28 AC 116 ms
40,860 KB
testcase_29 AC 148 ms
42,296 KB
testcase_30 AC 148 ms
42,748 KB
testcase_31 AC 139 ms
42,248 KB
testcase_32 AC 122 ms
41,368 KB
testcase_33 AC 146 ms
42,504 KB
testcase_34 AC 148 ms
42,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int d = koko.nextInt();
        int[] a = new int[d+1];
        int gu = 0;
        int ki = 0;
        if(d<3){
            System.out.println(d);
            for(int i=0; i<d;i++){
                a[i] = koko.nextInt();
                System.out.print(a[i]);
                System.out.print(" ");
            }
            a[0]=koko.nextInt();
            System.out.println(a[0]);
        }else{
            a[0]=koko.nextInt();
            for(int i=1; i<d+1; i++){
                a[i] = koko.nextInt();
                if(i%2==0){
                    gu=gu+a[i];
                }else if(i%2!=0){
                    ki=ki+a[i];
                }
            }
            if(gu!=0){
                System.out.println(2);
                System.out.println(a[0]+" "+ki+" "+gu);
            }else if(gu==0&&ki!=0){
                System.out.println(1);
                System.out.println(a[0]+" "+ki);
            }else if(gu==0&&ki==0){
                System.out.println(0);
                System.out.println(a[0]);
            }
        }
    }
}
0