結果

問題 No.265 数学のテスト
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-08 15:49:26
言語 Python2
(2.7.18)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,186 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-11-24 11:33:28
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
6,784 KB
testcase_01 AC 89 ms
6,784 KB
testcase_02 AC 93 ms
6,656 KB
testcase_03 AC 68 ms
6,272 KB
testcase_04 AC 69 ms
6,400 KB
testcase_05 AC 80 ms
6,400 KB
testcase_06 AC 69 ms
6,400 KB
testcase_07 AC 79 ms
6,272 KB
testcase_08 AC 93 ms
6,144 KB
testcase_09 AC 62 ms
6,400 KB
testcase_10 AC 65 ms
6,144 KB
testcase_11 AC 74 ms
6,400 KB
testcase_12 AC 11 ms
6,016 KB
testcase_13 AC 32 ms
6,272 KB
testcase_14 AC 25 ms
6,144 KB
testcase_15 AC 11 ms
6,272 KB
testcase_16 AC 18 ms
6,272 KB
testcase_17 AC 10 ms
6,144 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 AC 11 ms
6,016 KB
testcase_20 AC 12 ms
6,144 KB
testcase_21 AC 10 ms
6,144 KB
testcase_22 AC 26 ms
6,272 KB
testcase_23 AC 11 ms
6,144 KB
testcase_24 AC 11 ms
6,144 KB
testcase_25 AC 41 ms
6,272 KB
testcase_26 AC 11 ms
6,144 KB
testcase_27 AC 11 ms
6,016 KB
testcase_28 AC 14 ms
6,016 KB
testcase_29 AC 11 ms
6,016 KB
testcase_30 AC 14 ms
6,016 KB
testcase_31 AC 11 ms
6,144 KB
testcase_32 AC 11 ms
6,144 KB
testcase_33 AC 11 ms
6,144 KB
testcase_34 AC 11 ms
6,144 KB
testcase_35 AC 11 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
d=int(raw_input())
S=raw_input()

def rec(S,d,depth):
    ans=[0 for i in range(d+1)]
    if depth > 10:
        return ans
    start=0
    while start<len(S):
        if S[start]=='d':
            cnt,end=1,start+2
            while True:
                if S[end]=='{':
                    cnt+=1
                elif S[end]=='}':
                    cnt-=1
                    if cnt==0:
                        break
                end+=1
            ans2=rec(S[start+2:end],d,depth+1)
            for di in range(d):
                ans2[di]=ans2[di+1]*(di+1)
            ans2[d]=0
            ans=[x+y for (x,y) in zip(ans,ans2)]
            start=end+2
        else:
            cnt,coef,end=0,1,start
            while end<len(S):
                if S[end]=='+':
                    break
                elif S[end]=='x':
                    cnt+=1
                elif S[end]>='0' and S[end]<='9':
                    coef=int(S[end])
                end+=1
            ans2=[0 for i in range(d+1)]
            ans2[cnt]=coef
            ans=[x+y for (x,y) in zip(ans,ans2)]
            start=end+1
    return ans

for a in rec(S,d,0):
    print a,
print

0