結果
| 問題 |
No.265 数学のテスト
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-08-07 23:00:53 |
| 言語 | Python2 (2.7.18) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 661 bytes |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 13,756 KB |
| 最終ジャッジ日時 | 2024-07-18 05:15:16 |
| 合計ジャッジ時間 | 3,523 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 4 |
| other | AC * 1 TLE * 1 -- * 30 |
ソースコード
N = int(raw_input())
d = int(raw_input())
S = raw_input()
ans = [0] * (d + 1)
dx = 0
tmp = 1
cnt = 0
exp = False
for c in S:
if c == "{":
dx += 1
elif c == "x":
exp = True
cnt += 1
elif c in "123456789":
exp = True
tmp = int(c)
elif c != "*":
if exp:
for i in xrange(dx):
tmp *= cnt - i
if cnt - dx >= 0:
ans[cnt - dx] += tmp
exp = False
cnt = 0
tmp = 1
if c == "}":
dx -= 1
if exp:
for i in xrange(dx):
tmp *= cnt - i
ans[cnt - dx] += tmp
print " ".join(map(str, ans))