結果

問題 No.265 数学のテスト
ユーザー yuki2006yuki2006
提出日時 2015-08-07 21:28:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,242 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 77,072 KB
実行使用メモリ 54,580 KB
最終ジャッジ日時 2024-07-18 05:05:30
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
54,440 KB
testcase_01 AC 160 ms
54,048 KB
testcase_02 WA -
testcase_03 AC 126 ms
52,884 KB
testcase_04 AC 145 ms
54,024 KB
testcase_05 AC 151 ms
54,204 KB
testcase_06 AC 148 ms
54,108 KB
testcase_07 AC 159 ms
53,912 KB
testcase_08 AC 164 ms
54,328 KB
testcase_09 AC 135 ms
53,996 KB
testcase_10 AC 132 ms
53,188 KB
testcase_11 AC 153 ms
53,984 KB
testcase_12 AC 120 ms
54,260 KB
testcase_13 AC 127 ms
52,852 KB
testcase_14 AC 118 ms
53,152 KB
testcase_15 AC 100 ms
52,864 KB
testcase_16 AC 125 ms
53,568 KB
testcase_17 AC 109 ms
53,940 KB
testcase_18 AC 105 ms
53,116 KB
testcase_19 AC 100 ms
52,664 KB
testcase_20 AC 110 ms
52,880 KB
testcase_21 AC 109 ms
54,092 KB
testcase_22 AC 124 ms
53,208 KB
testcase_23 AC 93 ms
52,668 KB
testcase_24 AC 99 ms
52,856 KB
testcase_25 AC 136 ms
54,092 KB
testcase_26 AC 120 ms
54,172 KB
testcase_27 AC 116 ms
54,028 KB
testcase_28 AC 115 ms
53,092 KB
testcase_29 AC 107 ms
54,176 KB
testcase_30 AC 109 ms
53,076 KB
testcase_31 AC 112 ms
54,120 KB
testcase_32 AC 103 ms
52,952 KB
testcase_33 AC 118 ms
54,096 KB
testcase_34 AC 108 ms
52,792 KB
testcase_35 AC 111 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki265 {

    long pow(int s, int p) {
        long tmp = 1;
        for (int i = s; i <= p; i++) {
            tmp *= i;
        }
        return tmp;
    }

    void endTerm(int[] consts, int dimension, int level, long term) {
        int t = dimension - level;
        long l = term;
        if (t < 0) {
            l *= 0;
            t = 0;
        } else {
            l *= pow(t + 1, dimension);
        }

        consts[t] += l;
    }

    public Yuki265() {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int d = scanner.nextInt();
        String S = scanner.next();

        long term = 1;
        int level = 0;
        int dimension = 0;
        boolean lastTerm = false;
        int[] consts = new int[d + 1];
        for (int i = 0; i < N; i++) {
            final char c = S.charAt(i);
            if (Character.isDigit(c)) {
                term *= c - '0';
                lastTerm = true;
            } else if (c == 'x') {
                dimension++;
                lastTerm = true;

            } else if (c == '+') {
                if (lastTerm) {
                    endTerm(consts, dimension, level, term);
                }
                term = 1;
                dimension = 0;
            } else if (c == 'd') {
                level++;
                lastTerm = false;

            } else if (c == '}') {
                if (lastTerm) {
                    endTerm(consts, dimension, level, term);
                }
                level--;
                term = 1;
                // x*d(x) がないので リセットする。
                dimension = 0;
                lastTerm = false;
            } else if (c == '{') {
                lastTerm = false;

            } else if (c == '*') {
                lastTerm = false;

            }
        }
        if (lastTerm) {
            endTerm(consts, dimension, level, term);
        }


        for (int i = 0; i < d + 1; i++) {
            if (i > 0) {
                System.out.print(" ");
            }
            System.out.print(consts[i]);

        }
    }

    public static void main(String[] args) {
        Yuki265 hoge = new Yuki265();
    }
}
0