結果

問題 No.1111 コード進行
ユーザー roarisroaris
提出日時 2020-07-11 14:41:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 295,552 KB
最終ジャッジ日時 2024-10-13 01:52:08
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,856 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 44 ms
60,416 KB
testcase_06 AC 55 ms
65,792 KB
testcase_07 AC 54 ms
64,896 KB
testcase_08 AC 51 ms
63,488 KB
testcase_09 AC 52 ms
63,744 KB
testcase_10 AC 51 ms
67,328 KB
testcase_11 AC 47 ms
61,952 KB
testcase_12 AC 59 ms
66,048 KB
testcase_13 AC 48 ms
64,256 KB
testcase_14 AC 66 ms
68,480 KB
testcase_15 AC 45 ms
61,056 KB
testcase_16 AC 60 ms
66,432 KB
testcase_17 AC 49 ms
67,456 KB
testcase_18 AC 44 ms
60,288 KB
testcase_19 AC 41 ms
58,240 KB
testcase_20 AC 48 ms
62,848 KB
testcase_21 AC 44 ms
59,008 KB
testcase_22 AC 51 ms
69,760 KB
testcase_23 AC 50 ms
63,360 KB
testcase_24 AC 49 ms
64,768 KB
testcase_25 AC 71 ms
70,144 KB
testcase_26 AC 57 ms
65,792 KB
testcase_27 AC 45 ms
60,928 KB
testcase_28 AC 178 ms
181,888 KB
testcase_29 AC 106 ms
113,408 KB
testcase_30 AC 158 ms
136,320 KB
testcase_31 AC 53 ms
72,960 KB
testcase_32 AC 206 ms
135,296 KB
testcase_33 AC 204 ms
113,280 KB
testcase_34 AC 145 ms
155,008 KB
testcase_35 AC 177 ms
180,224 KB
testcase_36 AC 528 ms
181,376 KB
testcase_37 AC 157 ms
89,856 KB
testcase_38 AC 135 ms
90,112 KB
testcase_39 AC 301 ms
136,064 KB
testcase_40 AC 392 ms
159,104 KB
testcase_41 AC 205 ms
182,784 KB
testcase_42 AC 254 ms
112,640 KB
testcase_43 AC 247 ms
112,896 KB
testcase_44 AC 102 ms
91,008 KB
testcase_45 AC 203 ms
136,192 KB
testcase_46 AC 53 ms
69,376 KB
testcase_47 AC 886 ms
295,552 KB
testcase_48 AC 53 ms
69,096 KB
testcase_49 AC 53 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M, K = map(int, input().split())
PQR = [tuple(map(int, input().split())) for _ in range(M)]
dp = [[[0]*(K+1) for _ in range(300)] for _ in range(N)]

for i in range(300):
    dp[0][i][0] = 1

MOD = 10**9+7

for i in range(N-1):
    for j in range(K+1):
        for P, Q, R in PQR:
            if j+R<=K:
                dp[i+1][Q-1][j+R] += dp[i][P-1][j]
                dp[i+1][Q-1][j+R] %= MOD

print(sum(dp[N-1][i][K] for i in range(300))%MOD)
0