結果

問題 No.265 数学のテスト
ユーザー maspymaspy
提出日時 2020-03-22 03:36:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,532 KB
最終ジャッジ日時 2024-06-06 18:22:48
合計ジャッジ時間 19,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
44,304 KB
testcase_01 AC 446 ms
43,916 KB
testcase_02 AC 543 ms
44,292 KB
testcase_03 AC 456 ms
44,412 KB
testcase_04 AC 503 ms
44,020 KB
testcase_05 AC 533 ms
44,532 KB
testcase_06 AC 472 ms
43,900 KB
testcase_07 AC 494 ms
44,288 KB
testcase_08 AC 566 ms
44,160 KB
testcase_09 AC 513 ms
43,892 KB
testcase_10 AC 530 ms
44,272 KB
testcase_11 AC 522 ms
44,280 KB
testcase_12 AC 452 ms
44,112 KB
testcase_13 AC 460 ms
43,992 KB
testcase_14 AC 447 ms
43,996 KB
testcase_15 AC 454 ms
44,368 KB
testcase_16 AC 465 ms
43,588 KB
testcase_17 AC 453 ms
44,376 KB
testcase_18 AC 463 ms
44,116 KB
testcase_19 AC 452 ms
44,112 KB
testcase_20 AC 448 ms
44,360 KB
testcase_21 AC 440 ms
44,496 KB
testcase_22 AC 464 ms
43,504 KB
testcase_23 AC 437 ms
43,868 KB
testcase_24 AC 462 ms
43,856 KB
testcase_25 AC 461 ms
43,884 KB
testcase_26 AC 453 ms
44,240 KB
testcase_27 AC 445 ms
44,108 KB
testcase_28 AC 459 ms
43,896 KB
testcase_29 AC 441 ms
43,860 KB
testcase_30 AC 448 ms
44,236 KB
testcase_31 AC 454 ms
44,116 KB
testcase_32 AC 455 ms
43,856 KB
testcase_33 AC 462 ms
44,108 KB
testcase_34 AC 466 ms
43,856 KB
testcase_35 AC 456 ms
43,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


N = int(readline())
D = int(readline())
S = read().rstrip().decode()

import numpy as np


def der(f):
    g = np.zeros_like(f)
    g[:-1] = f[1:] * np.arange(1, len(f))
    return g


S = S.replace('d{', ' d{ ').replace('}', ' } ').replace('+', ' + ').split()
depth = 0
answer = np.zeros(D + 1, np.int64)
for word in S:
    if word == '+':
        continue
    if word == 'd{':
        depth += 1
        continue
    if word == '}':
        depth -= 1
        continue
    if depth > D:
        continue
    coef = 1
    deg = 0
    terms = word.split('*')
    for t in terms:
        if t == 'x':
            deg += 1
        else:
            coef = int(t)
    f = np.zeros(D + 1, np.int64)
    f[deg] = coef
    for _ in range(depth):
        f = der(f)
    answer += f

print(*answer)
0