結果
問題 | No.265 数学のテスト |
ユーザー | mkawa2 |
提出日時 | 2020-01-31 13:51:54 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,869 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,384 KB |
実行使用メモリ | 307,056 KB |
最終ジャッジ日時 | 2024-09-17 06:50:18 |
合計ジャッジ時間 | 6,589 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def SI(): return sys.stdin.readline()[:-1] def MI(): return map(int, sys.stdin.readline().split()) def MI1(): return map(int1, sys.stdin.readline().split()) def MF(): return map(float, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LF(): return list(map(float, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] def main(): def cal(s): res = [0] * (d + 1) i = j = 0 inpar = 0 # いくつのd{}に囲まれているか while j < len(s): while s[j] != "+" or inpar > 0: j += 1 if j == len(s): break if s[j] == "{": inpar += 1 if s[j] == "}": inpar -= 1 # 単項式だった場合 if i == 0 and j == len(s): # 微分のとき if s[0] == "d": ret = cal(s[2:-1]) for i, a in enumerate(ret[1:], 1): res[i - 1] = a * i # 累乗の計算のとき else: a = 1 x = 0 for c in s: if c.isdigit(): a = int(c) if c == "x": x += 1 res[x] = a return res # 項ごとに再計算して次数ごとに係数を合計する ret = cal(s[i:j]) for k in range(d + 1): res[k] += ret[k] i = j = j + 1 return res n = II() d = II() s = SI() print(*cal(s)) main()