結果

問題 No.265 数学のテスト
ユーザー とりゐとりゐ
提出日時 2023-06-06 14:45:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 962 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-06-09 06:14:14
合計ジャッジ時間 4,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 105 ms
75,776 KB
testcase_03 AC 148 ms
76,864 KB
testcase_04 AC 165 ms
76,928 KB
testcase_05 AC 155 ms
76,928 KB
testcase_06 AC 130 ms
76,908 KB
testcase_07 AC 127 ms
76,800 KB
testcase_08 AC 171 ms
76,804 KB
testcase_09 AC 144 ms
76,416 KB
testcase_10 AC 127 ms
76,396 KB
testcase_11 AC 151 ms
76,896 KB
testcase_12 AC 47 ms
60,800 KB
testcase_13 AC 95 ms
76,416 KB
testcase_14 AC 82 ms
76,288 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 65 ms
69,504 KB
testcase_17 AC 40 ms
52,428 KB
testcase_18 AC 40 ms
51,876 KB
testcase_19 AC 47 ms
60,288 KB
testcase_20 AC 41 ms
53,120 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 80 ms
75,648 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 117 ms
76,456 KB
testcase_26 AC 46 ms
59,008 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 54 ms
63,616 KB
testcase_29 AC 42 ms
57,856 KB
testcase_30 AC 46 ms
58,624 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 39 ms
52,224 KB
testcase_33 AC 39 ms
51,712 KB
testcase_34 AC 40 ms
52,096 KB
testcase_35 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d=int(input())
s=input()

def number(s):
  global i
  res=[0]*(d+1)
  if '0'<=s[i]<='9':
    res[0]=int(s[i])
    i+=1
  elif s[i]=='x':
    res[1]=1
    i+=1
  return res

def add(x,y):
  z=[0]*(d+1)
  for j in range(d+1):
    z[j]=x[j]+y[j]
  return z

def differential(x):
  y=[0]*(d+1)
  for j in range(1,d+1):
    y[j-1]=x[j]*j
  return y

def prod(x,y):
  z=[0]*(d+1)
  for j in range(d+1):
    for k in range(d+1):
      if j+k<=d:
        z[j+k]+=x[j]*y[k]
  return z

def expr(s):
  global i
  res=term(s)
  while i<len(s):
    if s[i]=='+':
      i+=1
      res=add(res,term(s))
    else:
      break
  return res

def term(s):
  global i
  res=factor(s)
  while i<len(s):
    if s[i]=='*':
      i+=1
      res=prod(res,factor(s))
    else:
      return res
  return res

def factor(s):
  global i
  if s[i]=='d':
    i+=2
    res=expr(s)
    if s[i]=='}':
      i+=1
    return differential(res)
  return number(s)

i=0
print(*expr(s))
0