結果

問題 No.1111 コード進行
ユーザー xuanjixuanji
提出日時 2020-07-10 22:38:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 880 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 283,700 KB
最終ジャッジ日時 2024-10-11 13:19:31
合計ジャッジ時間 15,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
65,920 KB
testcase_01 AC 59 ms
60,416 KB
testcase_02 AC 56 ms
60,544 KB
testcase_03 AC 55 ms
60,416 KB
testcase_04 AC 56 ms
60,416 KB
testcase_05 AC 57 ms
60,416 KB
testcase_06 AC 107 ms
77,184 KB
testcase_07 AC 104 ms
78,592 KB
testcase_08 AC 64 ms
63,872 KB
testcase_09 AC 105 ms
77,824 KB
testcase_10 AC 62 ms
63,360 KB
testcase_11 AC 60 ms
62,208 KB
testcase_12 AC 170 ms
84,632 KB
testcase_13 AC 57 ms
61,312 KB
testcase_14 AC 301 ms
95,436 KB
testcase_15 AC 57 ms
60,672 KB
testcase_16 AC 115 ms
79,360 KB
testcase_17 AC 56 ms
60,800 KB
testcase_18 AC 55 ms
60,544 KB
testcase_19 AC 55 ms
60,928 KB
testcase_20 AC 58 ms
61,696 KB
testcase_21 AC 56 ms
60,800 KB
testcase_22 AC 56 ms
60,800 KB
testcase_23 AC 59 ms
61,696 KB
testcase_24 AC 72 ms
68,736 KB
testcase_25 AC 247 ms
103,012 KB
testcase_26 AC 219 ms
85,352 KB
testcase_27 AC 61 ms
62,848 KB
testcase_28 AC 58 ms
61,184 KB
testcase_29 AC 66 ms
65,664 KB
testcase_30 AC 1,388 ms
247,868 KB
testcase_31 AC 162 ms
81,804 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 92 ms
78,788 KB
testcase_35 AC 48 ms
60,544 KB
testcase_36 AC 100 ms
77,440 KB
testcase_37 AC 199 ms
84,048 KB
testcase_38 AC 1,992 ms
283,596 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

MODULUS = 10**9+7

from collections import defaultdict

from sys import stdin, stdout
 
def input():
    return stdin.readline().strip()

N, M, K = input().split(' ')
N = int(N)
M = int(M)
K = int(K)

from functools import lru_cache

@lru_cache(None)
def ans(length, last, target):
    # how many length-`length` progressions are there with last chord `last` and complexity `target`
    if length == 1:
        if target == 0: return 1
        return 0
    if target < 0: return 0

    ret = 0
    for (prev, cost) in neighbours[last]:
        ret += ans(length-1, prev, target-cost)
        ret = ret % MODULUS
    return ret

neighbours = defaultdict(set)

for _ in range(M):
    P, Q, C = input().split(' ')
    P = int(P)
    Q = int(Q)
    C = int(C)

    neighbours[Q].add((P, C))

ret = sum(ans(N, v, K) for v in range(1, 301))
print(ret % MODULUS)
0