結果

問題 No.1111 コード進行
ユーザー maspymaspy
提出日時 2020-07-10 22:57:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,096 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,892 KB
最終ジャッジ日時 2024-10-11 13:38:45
合計ジャッジ時間 35,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,632 KB
testcase_01 AC 519 ms
44,460 KB
testcase_02 AC 522 ms
44,592 KB
testcase_03 AC 510 ms
44,212 KB
testcase_04 AC 510 ms
44,472 KB
testcase_05 AC 519 ms
44,592 KB
testcase_06 AC 522 ms
44,628 KB
testcase_07 AC 542 ms
44,536 KB
testcase_08 AC 542 ms
44,500 KB
testcase_09 AC 526 ms
44,632 KB
testcase_10 AC 553 ms
44,884 KB
testcase_11 AC 531 ms
44,628 KB
testcase_12 AC 527 ms
44,632 KB
testcase_13 AC 530 ms
44,764 KB
testcase_14 AC 540 ms
44,644 KB
testcase_15 AC 547 ms
44,516 KB
testcase_16 AC 538 ms
44,888 KB
testcase_17 AC 541 ms
44,672 KB
testcase_18 AC 538 ms
44,256 KB
testcase_19 AC 528 ms
44,336 KB
testcase_20 AC 528 ms
44,244 KB
testcase_21 AC 538 ms
44,636 KB
testcase_22 AC 536 ms
44,892 KB
testcase_23 AC 532 ms
44,392 KB
testcase_24 AC 528 ms
44,892 KB
testcase_25 AC 547 ms
44,508 KB
testcase_26 AC 537 ms
44,260 KB
testcase_27 AC 527 ms
44,788 KB
testcase_28 AC 748 ms
44,376 KB
testcase_29 AC 744 ms
44,500 KB
testcase_30 AC 683 ms
44,592 KB
testcase_31 AC 544 ms
44,392 KB
testcase_32 AC 872 ms
44,632 KB
testcase_33 AC 652 ms
44,516 KB
testcase_34 AC 705 ms
44,292 KB
testcase_35 AC 857 ms
44,632 KB
testcase_36 AC 834 ms
44,516 KB
testcase_37 AC 821 ms
44,664 KB
testcase_38 AC 745 ms
44,380 KB
testcase_39 AC 722 ms
44,508 KB
testcase_40 AC 836 ms
44,516 KB
testcase_41 AC 805 ms
44,656 KB
testcase_42 AC 829 ms
44,628 KB
testcase_43 AC 725 ms
44,716 KB
testcase_44 AC 669 ms
44,776 KB
testcase_45 AC 778 ms
44,516 KB
testcase_46 AC 1,086 ms
44,248 KB
testcase_47 AC 1,079 ms
44,644 KB
testcase_48 AC 1,096 ms
44,516 KB
testcase_49 AC 1,084 ms
44,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

MOD = 10**9 + 7

N, M, K = map(int, readline().split())
m = map(int, read().split())
PQC = tuple(zip(m, m, m))

dp = np.zeros((310, 310), np.int64)  # 最後の音、複雑度 -> 何通り
# 1音目
dp[1:301, 0] = 1
for _ in range(N - 1):
    newdp = np.zeros_like(dp)
    for p, q, c in PQC:
        newdp[q, c:310] += dp[p, 0:310 - c]
    dp = newdp % MOD

ans = dp[:, K].sum() % MOD
print(ans)
0