結果

問題 No.265 数学のテスト
ユーザー omuomu
提出日時 2015-08-08 23:41:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,246 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 78,340 KB
実行使用メモリ 59,800 KB
最終ジャッジ日時 2024-07-18 06:06:27
合計ジャッジ時間 8,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
59,800 KB
testcase_01 AC 184 ms
57,772 KB
testcase_02 WA -
testcase_03 AC 181 ms
56,960 KB
testcase_04 AC 178 ms
56,912 KB
testcase_05 AC 180 ms
56,740 KB
testcase_06 AC 183 ms
57,376 KB
testcase_07 AC 183 ms
56,316 KB
testcase_08 AC 177 ms
56,760 KB
testcase_09 AC 167 ms
56,676 KB
testcase_10 AC 163 ms
56,820 KB
testcase_11 AC 169 ms
56,536 KB
testcase_12 AC 121 ms
54,068 KB
testcase_13 AC 151 ms
54,376 KB
testcase_14 AC 153 ms
54,476 KB
testcase_15 AC 119 ms
53,864 KB
testcase_16 AC 140 ms
54,072 KB
testcase_17 AC 124 ms
53,872 KB
testcase_18 AC 129 ms
53,908 KB
testcase_19 AC 122 ms
54,108 KB
testcase_20 AC 121 ms
54,084 KB
testcase_21 AC 117 ms
54,084 KB
testcase_22 AC 154 ms
54,200 KB
testcase_23 AC 114 ms
54,120 KB
testcase_24 AC 117 ms
54,184 KB
testcase_25 AC 165 ms
54,216 KB
testcase_26 AC 126 ms
54,068 KB
testcase_27 AC 124 ms
54,124 KB
testcase_28 AC 135 ms
54,104 KB
testcase_29 AC 128 ms
53,976 KB
testcase_30 AC 137 ms
53,972 KB
testcase_31 AC 123 ms
54,216 KB
testcase_32 AC 118 ms
53,992 KB
testcase_33 AC 116 ms
53,960 KB
testcase_34 AC 121 ms
53,944 KB
testcase_35 AC 111 ms
52,940 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 int i;
	static String s;
	static int n;
		
	static int[] scan(){
		int d[] = new int[n];
		for(int j = 0;j < n;j++)d[j] = 0;
		
		int tn = 0;
		int tv = 0;
		while(true){
			String nx;
			if(i < s.length()){
				nx = s.substring(i, i + 1) ;
			}else{
				nx = "end";
			}
			
			if(nx.equals("x")){
				if(tv == 0)tv = 1;
				tn++;
			}else
			if(nx.equals("*")){
				
			}else
			if(nx.equals("}") || nx.equals("end") || nx.equals("+")){
				d[tn] += tv;
				tn = 0;
				tv = 0;
				if(nx.equals("}"))break;
			}else
			if(i < s.length()-1 && s.substring(i, i + 2).equals("d{")){
				i += 2;
				int tmp[] = scan();
				for(int j = 1;j < n;j++){
					d[j-1] += tmp[j] * j;
				}
			}else
			{
				if(tv == 0)tv = 1;
				tv *= Integer.parseInt(nx); 
			}
			i++;
			if(nx.equals("end"))break;
		}
		
		return d;
	}
	
	static void solve(){
		int l = sc.nextInt();
		n = sc.nextInt();
		n++;
		s = sc.next();
		int[] d = new int[n];
		i = 0;
		d = scan();
		for(int j = 0;j < n;j++){
			System.out.print(d[j]);
			System.out.print(" ");
		}
		System.out.println();
	}

}
0