結果

問題 No.1111 コード進行
ユーザー KazunKazun
提出日時 2020-07-10 22:45:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 569 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 282,876 KB
最終ジャッジ日時 2024-10-11 13:22:02
合計ジャッジ時間 13,200 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
64,224 KB
testcase_01 AC 41 ms
57,472 KB
testcase_02 AC 41 ms
57,708 KB
testcase_03 AC 42 ms
57,744 KB
testcase_04 AC 41 ms
58,016 KB
testcase_05 AC 42 ms
58,404 KB
testcase_06 AC 52 ms
64,460 KB
testcase_07 AC 53 ms
63,880 KB
testcase_08 AC 45 ms
58,832 KB
testcase_09 AC 60 ms
66,876 KB
testcase_10 AC 42 ms
58,604 KB
testcase_11 AC 44 ms
58,904 KB
testcase_12 AC 88 ms
76,612 KB
testcase_13 AC 42 ms
57,636 KB
testcase_14 AC 126 ms
79,580 KB
testcase_15 AC 43 ms
57,784 KB
testcase_16 AC 58 ms
67,688 KB
testcase_17 AC 42 ms
57,872 KB
testcase_18 AC 41 ms
58,824 KB
testcase_19 AC 42 ms
57,756 KB
testcase_20 AC 42 ms
58,472 KB
testcase_21 AC 43 ms
58,848 KB
testcase_22 AC 42 ms
59,320 KB
testcase_23 AC 43 ms
57,764 KB
testcase_24 AC 45 ms
60,640 KB
testcase_25 AC 101 ms
79,152 KB
testcase_26 AC 179 ms
80,856 KB
testcase_27 AC 43 ms
58,792 KB
testcase_28 AC 42 ms
58,228 KB
testcase_29 AC 53 ms
66,220 KB
testcase_30 AC 1,113 ms
194,652 KB
testcase_31 AC 135 ms
79,484 KB
testcase_32 AC 1,523 ms
191,772 KB
testcase_33 AC 1,931 ms
182,856 KB
testcase_34 AC 46 ms
60,672 KB
testcase_35 AC 41 ms
57,600 KB
testcase_36 AC 85 ms
77,212 KB
testcase_37 AC 90 ms
77,384 KB
testcase_38 AC 1,566 ms
275,228 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 #

A=10**9+7
N,M,K=map(int,input().split())
S=300

E=[[] for _ in range(S+1)]
for i in range(M):
    p,q,c=map(int,input().split())
    E[p].append((q,c))
    

H={}
def f(F,R,L):
    """
    F:From
    R:残り複雑度
    L:残りコード数
    """
    
    if (F,R,L) in H:
        return H[(F,R,L)]
    
    if L==0:
        if R==0:
            return 1
        else:
            return 0

    K=0
    for (q,c) in E[F]:
        if R>=c:
            K=(K+f(q,R-c,L-1))%A

    H[(F,R,L)]=K
    return K

V=0
for i in range(1,S+1):
    V=(V+f(i,K,N-1))%A
print(V%A)
0