結果

問題 No.265 数学のテスト
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-07 23:19:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,575 bytes
コンパイル時間 3,777 ms
コンパイル使用メモリ 84,948 KB
実行使用メモリ 56,700 KB
最終ジャッジ日時 2024-07-18 05:22:01
合計ジャッジ時間 10,060 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
56,700 KB
testcase_01 AC 179 ms
55,584 KB
testcase_02 WA -
testcase_03 AC 185 ms
55,404 KB
testcase_04 AC 191 ms
55,356 KB
testcase_05 AC 193 ms
54,504 KB
testcase_06 AC 198 ms
56,156 KB
testcase_07 AC 187 ms
54,840 KB
testcase_08 AC 191 ms
55,108 KB
testcase_09 AC 186 ms
55,328 KB
testcase_10 AC 189 ms
56,012 KB
testcase_11 AC 185 ms
54,616 KB
testcase_12 AC 134 ms
54,360 KB
testcase_13 AC 135 ms
53,332 KB
testcase_14 AC 135 ms
53,308 KB
testcase_15 AC 126 ms
53,356 KB
testcase_16 AC 145 ms
53,980 KB
testcase_17 AC 113 ms
53,892 KB
testcase_18 AC 135 ms
54,344 KB
testcase_19 AC 120 ms
53,080 KB
testcase_20 AC 125 ms
53,172 KB
testcase_21 AC 131 ms
54,280 KB
testcase_22 AC 145 ms
54,044 KB
testcase_23 AC 116 ms
53,972 KB
testcase_24 AC 122 ms
53,188 KB
testcase_25 AC 138 ms
53,244 KB
testcase_26 AC 133 ms
54,392 KB
testcase_27 AC 130 ms
54,248 KB
testcase_28 AC 136 ms
54,196 KB
testcase_29 AC 140 ms
54,280 KB
testcase_30 AC 142 ms
54,260 KB
testcase_31 AC 132 ms
54,096 KB
testcase_32 AC 129 ms
54,068 KB
testcase_33 AC 131 ms
54,424 KB
testcase_34 AC 116 ms
53,152 KB
testcase_35 AC 133 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No265 {
	
	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		int d = in.nextInt();
		String s = in.next();
		int[] a = new int[d+1];
		calc(a,s.toCharArray());
		for (int i=0; i<d; i++) {
			out.print(a[i] + " ");
		}
		out.println(a[d]);
	}

	static int ptr = 0;

	static void calc(int[] a, char[] cs) {
		while (ptr < cs.length) {
			if (cs[ptr] == 'd') {
				ptr += 2;
				int[] b = new int[a.length];
				calc(b,cs);
				d(b);
				for (int i=0; i<a.length; i++) {
					a[i] += b[i];
				}
			}else {
				int dim = 0;
				int coe = 1;
				boolean f1 = false;
				boolean f2 = false;
				while (ptr < cs.length && cs[ptr] != '+') {
					if (cs[ptr] == 'x') {
						dim++;
						f1 = true;
					}else if ('1' <= cs[ptr] && cs[ptr] <= '9') {
						coe *= cs[ptr] - '0';
						f1 = true;
					}else if (cs[ptr] == '}') {
						f2 = true;
						break;
					}
					ptr++;
				}
				if (f1) a[dim] += coe;
				if (f2) return;
			}
			
			ptr++;
		}	
	}

	static void d(int[] a) {
		for (int i=0; i<a.length-1; i++) {
			a[i] = a[i+1]*(i+1);
		}
		a[a.length-1] = 0;
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0