結果
問題 |
No.265 数学のテスト
|
ユーザー |
|
提出日時 | 2015-08-08 01:23:59 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 669 bytes |
コンパイル時間 | 53 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-11-24 11:24:18 |
合計ジャッジ時間 | 1,416 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 32 |
ソースコード
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: if cnt - dx >= 0: for i in xrange(dx): tmp *= cnt - i 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))