結果

問題 No.265 数学のテスト
ユーザー GrenacheGrenache
提出日時 2015-08-07 23:10:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,304 bytes
コンパイル時間 3,232 ms
コンパイル使用メモリ 79,496 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-07-18 05:18:23
合計ジャッジ時間 9,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,228 KB
testcase_01 AC 287 ms
42,588 KB
testcase_02 WA -
testcase_03 AC 146 ms
42,008 KB
testcase_04 AC 143 ms
41,980 KB
testcase_05 AC 151 ms
41,980 KB
testcase_06 AC 147 ms
41,772 KB
testcase_07 AC 170 ms
42,636 KB
testcase_08 AC 191 ms
42,472 KB
testcase_09 AC 147 ms
41,556 KB
testcase_10 AC 153 ms
40,984 KB
testcase_11 AC 157 ms
41,960 KB
testcase_12 AC 126 ms
41,296 KB
testcase_13 AC 141 ms
41,776 KB
testcase_14 AC 124 ms
41,492 KB
testcase_15 AC 121 ms
41,232 KB
testcase_16 AC 136 ms
41,216 KB
testcase_17 AC 120 ms
41,420 KB
testcase_18 AC 121 ms
41,436 KB
testcase_19 AC 130 ms
41,284 KB
testcase_20 AC 117 ms
41,360 KB
testcase_21 AC 120 ms
40,580 KB
testcase_22 AC 135 ms
41,832 KB
testcase_23 AC 111 ms
41,204 KB
testcase_24 AC 117 ms
41,400 KB
testcase_25 AC 132 ms
41,652 KB
testcase_26 AC 116 ms
41,368 KB
testcase_27 AC 121 ms
41,524 KB
testcase_28 AC 126 ms
41,440 KB
testcase_29 AC 124 ms
41,488 KB
testcase_30 AC 125 ms
41,372 KB
testcase_31 AC 111 ms
41,396 KB
testcase_32 AC 115 ms
41,524 KB
testcase_33 AC 114 ms
41,548 KB
testcase_34 AC 116 ms
41,468 KB
testcase_35 AC 117 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder265 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt() + 1;
        int d = sc.nextInt();
        char[] s = (sc.next() + "+").toCharArray();
        
        int[] a = new int[d + 1];

        int cc = 0;
        int dd = 0;
        int xx = 0;
        for (int i = 0; i < n; i++) {
        	char e = s[i];
        	
        	if (e >= '1' && e <= '9') {
        		cc = e - '0';
        	} else if (e == 'x') {
        		xx++;
        		if (cc == 0) {
        			cc = 1;
        		}
        	} else if (cc != 0 && (e == '+' || e == '}')) {
        		for (int j = 0; j < dd; j++) {
        			cc *= xx;
        			xx--;
        		}
        		if (xx >= 0) {
        			a[xx] += cc;
        		}
        		cc = 0;
        		xx = 0;
        		if (e == '}') {
        			dd--;
        		}
        	} else if (e == '}') {
        		dd--;
        	} else if (e == 'd') {
        		dd++;
        	} else if (e == '*') {
        	} else if (e == '{') {
        	}
        }

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

        sc.close();
    }
}
0