結果

問題 No.801 エレベーター
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-18 16:11:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 493 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 152,064 KB
最終ジャッジ日時 2024-07-18 10:46:26
合計ジャッジ時間 8,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 424 ms
70,912 KB
testcase_04 AC 422 ms
71,552 KB
testcase_05 AC 404 ms
71,680 KB
testcase_06 AC 412 ms
71,552 KB
testcase_07 AC 430 ms
71,040 KB
testcase_08 AC 443 ms
71,168 KB
testcase_09 AC 435 ms
71,296 KB
testcase_10 AC 412 ms
71,040 KB
testcase_11 AC 411 ms
71,680 KB
testcase_12 AC 434 ms
71,424 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
mod = 10**9+7
t = [tuple(map(int, input().split())) for _ in range(m)]

cnt = [[0]*(n+1) for _ in range(n+1)]

for i in range(m):
    l, r = t[i]
    for i in range(l, r+1):
        for j in range(l, r+1):
            cnt[i][j] += 1

dp = [[0]*(n+1) for _ in range(k+1)]
dp[0][1] = 1
for i in range(1, k+1):
    for j in range(1, n+1):
        for x in range(1, n+1):
            dp[i][j] += dp[i-1][x]*cnt[x][j]%mod
        dp[i][j] %= mod
print(dp[k][n])
0