結果

問題 No.265 数学のテスト
ユーザー omuomu
提出日時 2015-08-09 00:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,305 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 46,532 KB
最終ジャッジ日時 2024-11-24 11:28:47
合計ジャッジ時間 8,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
44,720 KB
testcase_01 AC 301 ms
45,572 KB
testcase_02 AC 176 ms
46,196 KB
testcase_03 AC 163 ms
44,936 KB
testcase_04 AC 160 ms
45,044 KB
testcase_05 AC 168 ms
45,624 KB
testcase_06 AC 160 ms
45,084 KB
testcase_07 AC 174 ms
45,552 KB
testcase_08 AC 198 ms
46,532 KB
testcase_09 AC 163 ms
44,288 KB
testcase_10 AC 149 ms
44,568 KB
testcase_11 AC 191 ms
45,512 KB
testcase_12 AC 115 ms
41,016 KB
testcase_13 AC 158 ms
42,480 KB
testcase_14 AC 152 ms
42,428 KB
testcase_15 AC 115 ms
41,216 KB
testcase_16 AC 151 ms
42,048 KB
testcase_17 AC 107 ms
41,248 KB
testcase_18 AC 122 ms
41,204 KB
testcase_19 AC 124 ms
41,384 KB
testcase_20 AC 122 ms
41,156 KB
testcase_21 AC 121 ms
41,072 KB
testcase_22 AC 136 ms
42,412 KB
testcase_23 AC 119 ms
41,252 KB
testcase_24 AC 121 ms
41,304 KB
testcase_25 AC 146 ms
42,864 KB
testcase_26 AC 117 ms
41,296 KB
testcase_27 AC 108 ms
41,460 KB
testcase_28 AC 126 ms
41,820 KB
testcase_29 AC 123 ms
41,460 KB
testcase_30 AC 137 ms
41,588 KB
testcase_31 AC 107 ms
41,708 KB
testcase_32 AC 121 ms
41,296 KB
testcase_33 AC 118 ms
41,296 KB
testcase_34 AC 107 ms
41,184 KB
testcase_35 AC 122 ms
41,808 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