結果

問題 No.1111 コード進行
ユーザー takakintakakin
提出日時 2020-07-10 21:47:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 494 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-10-11 08:47:45
合計ジャッジ時間 10,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,000 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 38 ms
13,696 KB
testcase_06 AC 73 ms
15,488 KB
testcase_07 AC 66 ms
14,976 KB
testcase_08 AC 39 ms
12,160 KB
testcase_09 AC 55 ms
13,696 KB
testcase_10 AC 66 ms
17,408 KB
testcase_11 AC 39 ms
12,160 KB
testcase_12 AC 95 ms
15,616 KB
testcase_13 AC 47 ms
14,208 KB
testcase_14 AC 165 ms
17,920 KB
testcase_15 AC 35 ms
11,648 KB
testcase_16 AC 109 ms
16,128 KB
testcase_17 AC 58 ms
17,920 KB
testcase_18 AC 35 ms
12,288 KB
testcase_19 AC 32 ms
11,904 KB
testcase_20 AC 39 ms
13,056 KB
testcase_21 AC 33 ms
11,136 KB
testcase_22 AC 74 ms
19,968 KB
testcase_23 AC 50 ms
13,824 KB
testcase_24 AC 53 ms
14,848 KB
testcase_25 AC 179 ms
19,328 KB
testcase_26 WA -
testcase_27 AC 42 ms
11,904 KB
testcase_28 AC 540 ms
121,088 KB
testcase_29 AC 395 ms
58,368 KB
testcase_30 WA -
testcase_31 AC 92 ms
23,424 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m,k=map(int,input().split())
mod=10**9+7
PQ=[[int(i) for i in input().split()] for _ in range(m)]

DP=[[[0]*(k+1) for i in range(301)] for j in range(n+1)]

for p,q,c in PQ:
  if c<=k:
    DP[2][q][c]+=1
for i in range(2,n):
  for p,q,c in PQ:
    for j in range(k+1-c):
      DP[i+1][q][j+c]+=DP[i][p][j]
      if DP[i+1][q][j+c]>mod:
        DP[i+1][q][j+c]=DP[i+1][q][j+c]%mod
ans=0
for i in range(301):
  ans+=DP[n][i][k]
print(ans)
0