結果

問題 No.40 多項式の割り算
ユーザー tentententen
提出日時 2023-02-14 14:34:57
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,260 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 92,208 KB
実行使用メモリ 52,176 KB
最終ジャッジ日時 2024-07-17 04:06:51
合計ジャッジ時間 6,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,472 KB
testcase_01 AC 55 ms
50,176 KB
testcase_02 AC 53 ms
50,184 KB
testcase_03 AC 54 ms
50,372 KB
testcase_04 AC 97 ms
51,764 KB
testcase_05 AC 100 ms
51,628 KB
testcase_06 AC 102 ms
51,772 KB
testcase_07 AC 100 ms
51,984 KB
testcase_08 AC 58 ms
50,500 KB
testcase_09 AC 99 ms
51,488 KB
testcase_10 AC 101 ms
51,796 KB
testcase_11 AC 84 ms
51,780 KB
testcase_12 AC 87 ms
51,528 KB
testcase_13 AC 101 ms
52,028 KB
testcase_14 AC 95 ms
51,624 KB
testcase_15 AC 83 ms
51,572 KB
testcase_16 AC 101 ms
51,836 KB
testcase_17 AC 72 ms
51,440 KB
testcase_18 AC 103 ms
51,844 KB
testcase_19 AC 102 ms
52,176 KB
testcase_20 AC 83 ms
51,672 KB
testcase_21 AC 67 ms
50,912 KB
testcase_22 AC 64 ms
50,880 KB
testcase_23 AC 85 ms
51,708 KB
testcase_24 AC 100 ms
51,848 KB
testcase_25 AC 54 ms
50,116 KB
testcase_26 AC 55 ms
50,016 KB
testcase_27 AC 54 ms
50,484 KB
testcase_28 RE -
testcase_29 AC 54 ms
50,108 KB
testcase_30 AC 54 ms
50,056 KB
testcase_31 AC 53 ms
50,444 KB
testcase_32 AC 54 ms
50,044 KB
testcase_33 AC 54 ms
50,436 KB
testcase_34 AC 54 ms
50,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n + 1];
        for (int i = n; i >= 0; i--) {
            values[i] = sc.nextInt();
        }
        for (int i = 0; i <= n - 3; i++) {
            values[i + 2] += values[i];
        }
        ArrayList<Integer> ans = new ArrayList<>();
        for (int i = n; i >= n - 2; i--) {
            ans.add(values[i]);
        }
        for (int i = 2; i >= 1; i--) {
            if (ans.get(i) == 0) {
                ans.remove(i);
            } else {
                break;
            }
        }
        System.out.println(ans.size() - 1);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < ans.size(); i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(ans.get(i));
        }
        System.out.println(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0