結果

問題 No.265 数学のテスト
ユーザー omuomu
提出日時 2015-08-09 00:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 1,305 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 77,364 KB
実行使用メモリ 45,716 KB
最終ジャッジ日時 2024-05-03 11:52:35
合計ジャッジ時間 8,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
44,220 KB
testcase_01 AC 311 ms
45,584 KB
testcase_02 AC 196 ms
45,716 KB
testcase_03 AC 163 ms
44,812 KB
testcase_04 AC 167 ms
45,032 KB
testcase_05 AC 166 ms
45,148 KB
testcase_06 AC 166 ms
45,088 KB
testcase_07 AC 167 ms
45,236 KB
testcase_08 AC 191 ms
45,504 KB
testcase_09 AC 155 ms
43,984 KB
testcase_10 AC 164 ms
43,312 KB
testcase_11 AC 188 ms
44,952 KB
testcase_12 AC 125 ms
40,612 KB
testcase_13 AC 147 ms
41,872 KB
testcase_14 AC 154 ms
41,644 KB
testcase_15 AC 124 ms
41,080 KB
testcase_16 AC 150 ms
41,544 KB
testcase_17 AC 122 ms
40,972 KB
testcase_18 AC 115 ms
39,980 KB
testcase_19 AC 121 ms
41,100 KB
testcase_20 AC 120 ms
41,396 KB
testcase_21 AC 113 ms
41,148 KB
testcase_22 AC 146 ms
41,292 KB
testcase_23 AC 115 ms
41,104 KB
testcase_24 AC 105 ms
40,080 KB
testcase_25 AC 147 ms
42,904 KB
testcase_26 AC 122 ms
41,352 KB
testcase_27 AC 106 ms
39,864 KB
testcase_28 AC 111 ms
41,448 KB
testcase_29 AC 126 ms
41,220 KB
testcase_30 AC 124 ms
40,252 KB
testcase_31 AC 107 ms
41,108 KB
testcase_32 AC 111 ms
40,596 KB
testcase_33 AC 117 ms
41,148 KB
testcase_34 AC 104 ms
41,100 KB
testcase_35 AC 105 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package tmp;

import java.util.Scanner;

public class Main {

	static Scanner sc;
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		solve();
	}
	static long[] ans;
	static void cast(int D,int d,long num){
		for(int j = D;j > 0;j--){
			num *= d;
			d--;
		}
		if(d < 0)return;
		ans[d] += num;
	}
		
	
	static void solve(){
		String s;
		int n;
		int l = sc.nextInt();
		n = sc.nextInt();
		n++;
		s = sc.next();
		ans = new long[n];
		
		int D = 0;
		
		for(int i = 0;i < l;i++){
			if(i < l-1 && s.substring(i,i+2).equals("d{")){
				D++;i++;continue;
			}
			if(i < l   && s.substring(i,i+1).equals("}")){
				D--; continue;
			}
			int d = 0;
			int num = 1;
			while(true){
				String c = s.substring(i,i+1);
				if(c.equals("d")){
					i--;
					break;
				}
				if(c.equals("+")){
					i++;
					continue;
				}
				if(c.equals("x")){
					d++;
				}else{
					num *= Integer.parseInt(c);
				}
				if(i == s.length()-1 || s.substring(i+1,i+2).equals("}")){
					cast(D,d,num);
					break;
				}
				c = s.substring(i + 1,i + 2);
				if(c.equals("*")){
					i += 2;
				}
				if(c.equals("+")){
					cast(D,d,num);
					i++;
					break;
				}
			}
		}
			
		for(int j = 0;j < n;j++){
			System.out.print(ans[j]);
			System.out.print(" ");
		}
		System.out.println();
	}

}
0