結果

問題 No.265 数学のテスト
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-07 23:30:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,581 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 84,068 KB
実行使用メモリ 56,920 KB
最終ジャッジ日時 2024-07-18 05:24:53
合計ジャッジ時間 9,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
56,920 KB
testcase_01 AC 181 ms
55,880 KB
testcase_02 AC 182 ms
54,600 KB
testcase_03 AC 186 ms
55,596 KB
testcase_04 AC 185 ms
55,644 KB
testcase_05 AC 187 ms
55,284 KB
testcase_06 AC 189 ms
55,736 KB
testcase_07 AC 190 ms
54,696 KB
testcase_08 AC 197 ms
54,648 KB
testcase_09 AC 191 ms
55,340 KB
testcase_10 AC 188 ms
55,588 KB
testcase_11 AC 191 ms
54,284 KB
testcase_12 AC 137 ms
54,200 KB
testcase_13 AC 152 ms
54,092 KB
testcase_14 AC 141 ms
54,228 KB
testcase_15 AC 131 ms
54,216 KB
testcase_16 AC 128 ms
53,320 KB
testcase_17 AC 109 ms
52,988 KB
testcase_18 AC 132 ms
54,036 KB
testcase_19 AC 128 ms
54,156 KB
testcase_20 AC 138 ms
54,224 KB
testcase_21 AC 123 ms
53,228 KB
testcase_22 AC 140 ms
53,844 KB
testcase_23 AC 109 ms
52,832 KB
testcase_24 AC 122 ms
54,184 KB
testcase_25 AC 146 ms
54,360 KB
testcase_26 AC 135 ms
54,356 KB
testcase_27 AC 120 ms
53,304 KB
testcase_28 AC 142 ms
52,996 KB
testcase_29 AC 134 ms
54,352 KB
testcase_30 AC 133 ms
53,064 KB
testcase_31 AC 133 ms
54,284 KB
testcase_32 AC 123 ms
53,316 KB
testcase_33 AC 129 ms
54,316 KB
testcase_34 AC 137 ms
54,340 KB
testcase_35 AC 137 ms
54,148 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();
		long[] a = new long[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(long[] a, char[] cs) {
		while (ptr < cs.length) {
			if (cs[ptr] == 'd') {
				ptr += 2;
				long[] b = new long[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(long[] 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