結果

問題 No.265 数学のテスト
ユーザー nebukuro09nebukuro09
提出日時 2016-10-25 23:29:35
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 80,320 KB
最終ジャッジ日時 2024-11-24 11:34:16
合計ジャッジ時間 5,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
79,748 KB
testcase_01 AC 334 ms
80,320 KB
testcase_02 AC 80 ms
78,116 KB
testcase_03 AC 91 ms
78,592 KB
testcase_04 AC 90 ms
78,336 KB
testcase_05 AC 91 ms
78,592 KB
testcase_06 AC 89 ms
78,760 KB
testcase_07 AC 89 ms
78,336 KB
testcase_08 AC 87 ms
78,908 KB
testcase_09 AC 86 ms
78,396 KB
testcase_10 AC 86 ms
78,344 KB
testcase_11 AC 89 ms
78,464 KB
testcase_12 AC 68 ms
75,392 KB
testcase_13 AC 82 ms
78,080 KB
testcase_14 AC 82 ms
78,464 KB
testcase_15 AC 72 ms
75,544 KB
testcase_16 AC 78 ms
78,080 KB
testcase_17 AC 72 ms
75,448 KB
testcase_18 AC 70 ms
75,460 KB
testcase_19 AC 71 ms
75,768 KB
testcase_20 AC 74 ms
75,648 KB
testcase_21 AC 72 ms
75,520 KB
testcase_22 AC 82 ms
78,476 KB
testcase_23 AC 70 ms
75,708 KB
testcase_24 AC 68 ms
75,520 KB
testcase_25 AC 86 ms
78,336 KB
testcase_26 AC 69 ms
75,548 KB
testcase_27 AC 69 ms
75,264 KB
testcase_28 AC 77 ms
76,688 KB
testcase_29 AC 69 ms
75,392 KB
testcase_30 AC 76 ms
77,696 KB
testcase_31 AC 70 ms
75,776 KB
testcase_32 AC 73 ms
75,648 KB
testcase_33 AC 68 ms
75,264 KB
testcase_34 AC 69 ms
75,452 KB
testcase_35 AC 70 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
d = input()
S = filter(None, raw_input().replace('+', ' ').replace('d{', ' { ').replace('}', ' } ').split())
coef = [0 for i in xrange(d+1)]
dx = 0

for s in S:
    if s == '{':
        dx += 1
    elif s == '}':
        dx -= 1
    else:
        t = sorted(s.split('*'))
        if t[0].isdigit():
            c = int(t[0])
            t.pop(0)
        else:
            c = 1
        for i in xrange(len(t), len(t)-dx, -1):
            c *= i
        e = len(t) - dx
        if e >= 0:
            coef[e] += c
print ' '.join(map(str, coef))
0