結果
問題 | No.265 数学のテスト |
ユーザー | yuki2006 |
提出日時 | 2015-08-07 21:29:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 172 ms / 2,000 ms |
コード長 | 2,245 bytes |
コンパイル時間 | 2,970 ms |
コンパイル使用メモリ | 77,216 KB |
実行使用メモリ | 54,712 KB |
最終ジャッジ日時 | 2024-05-03 11:47:20 |
合計ジャッジ時間 | 8,575 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 145 ms
54,044 KB |
testcase_01 | AC | 149 ms
54,176 KB |
testcase_02 | AC | 172 ms
54,712 KB |
testcase_03 | AC | 144 ms
53,908 KB |
testcase_04 | AC | 142 ms
54,192 KB |
testcase_05 | AC | 149 ms
54,204 KB |
testcase_06 | AC | 142 ms
53,972 KB |
testcase_07 | AC | 147 ms
54,108 KB |
testcase_08 | AC | 170 ms
54,472 KB |
testcase_09 | AC | 139 ms
54,276 KB |
testcase_10 | AC | 152 ms
54,104 KB |
testcase_11 | AC | 168 ms
54,208 KB |
testcase_12 | AC | 126 ms
54,160 KB |
testcase_13 | AC | 127 ms
53,904 KB |
testcase_14 | AC | 122 ms
53,264 KB |
testcase_15 | AC | 113 ms
54,044 KB |
testcase_16 | AC | 125 ms
54,244 KB |
testcase_17 | AC | 109 ms
53,956 KB |
testcase_18 | AC | 102 ms
52,692 KB |
testcase_19 | AC | 104 ms
52,928 KB |
testcase_20 | AC | 104 ms
53,016 KB |
testcase_21 | AC | 110 ms
53,948 KB |
testcase_22 | AC | 140 ms
54,392 KB |
testcase_23 | AC | 116 ms
54,036 KB |
testcase_24 | AC | 113 ms
54,088 KB |
testcase_25 | AC | 120 ms
53,264 KB |
testcase_26 | AC | 119 ms
54,184 KB |
testcase_27 | AC | 102 ms
52,832 KB |
testcase_28 | AC | 109 ms
52,952 KB |
testcase_29 | AC | 124 ms
54,096 KB |
testcase_30 | AC | 121 ms
53,952 KB |
testcase_31 | AC | 105 ms
53,052 KB |
testcase_32 | AC | 119 ms
54,188 KB |
testcase_33 | AC | 111 ms
53,448 KB |
testcase_34 | AC | 119 ms
53,908 KB |
testcase_35 | AC | 112 ms
54,056 KB |
ソースコード
import java.util.Scanner; public class Yuki265 { long pow(int s, int p) { long tmp = 1; for (int i = s; i <= p; i++) { tmp *= i; } return tmp; } void endTerm(long[] consts, int dimension, int level, long term) { int t = dimension - level; long l = term; if (t < 0) { l *= 0; t = 0; } else { l *= pow(t + 1, dimension); } consts[t] += l; } public Yuki265() { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); int d = scanner.nextInt(); String S = scanner.next(); long term = 1; int level = 0; int dimension = 0; boolean lastTerm = false; long[] consts = new long[d + 1]; for (int i = 0; i < N; i++) { final char c = S.charAt(i); if (Character.isDigit(c)) { term *= c - '0'; lastTerm = true; } else if (c == 'x') { dimension++; lastTerm = true; } else if (c == '+') { if (lastTerm) { endTerm(consts, dimension, level, term); } term = 1; dimension = 0; } else if (c == 'd') { level++; lastTerm = false; } else if (c == '}') { if (lastTerm) { endTerm(consts, dimension, level, term); } level--; term = 1; // x*d(x) がないので リセットする。 dimension = 0; lastTerm = false; } else if (c == '{') { lastTerm = false; } else if (c == '*') { lastTerm = false; } } if (lastTerm) { endTerm(consts, dimension, level, term); } for (int i = 0; i < d + 1; i++) { if (i > 0) { System.out.print(" "); } System.out.print(consts[i]); } } public static void main(String[] args) { Yuki265 hoge = new Yuki265(); } }