結果

問題 No.801 エレベーター
ユーザー rlangevinrlangevin
提出日時 2023-09-21 08:55:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,424 KB
最終ジャッジ日時 2024-07-07 03:13:30
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,224 KB
testcase_01 AC 31 ms
53,260 KB
testcase_02 AC 31 ms
53,160 KB
testcase_03 AC 46 ms
67,248 KB
testcase_04 AC 46 ms
65,768 KB
testcase_05 AC 47 ms
65,920 KB
testcase_06 AC 47 ms
65,156 KB
testcase_07 AC 46 ms
66,480 KB
testcase_08 AC 48 ms
66,564 KB
testcase_09 AC 47 ms
66,988 KB
testcase_10 AC 46 ms
66,148 KB
testcase_11 AC 45 ms
65,888 KB
testcase_12 AC 45 ms
66,804 KB
testcase_13 AC 284 ms
77,184 KB
testcase_14 AC 285 ms
76,764 KB
testcase_15 AC 292 ms
77,420 KB
testcase_16 AC 286 ms
77,184 KB
testcase_17 AC 287 ms
77,272 KB
testcase_18 AC 284 ms
77,180 KB
testcase_19 AC 286 ms
77,272 KB
testcase_20 AC 284 ms
77,176 KB
testcase_21 AC 290 ms
77,184 KB
testcase_22 AC 286 ms
76,916 KB
testcase_23 AC 284 ms
77,424 KB
testcase_24 AC 287 ms
77,032 KB
testcase_25 AC 288 ms
77,272 KB
testcase_26 AC 283 ms
77,232 KB
testcase_27 AC 290 ms
77,352 KB
testcase_28 AC 292 ms
77,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M, K = map(int, input().split())
mod = 10 ** 9 + 7
L, R = [0] * M, [0] * M
for i in range(M):
    L[i], R[i] = map(int, input().split())
    L[i] -= 1

pre = [0] * N
pre[0] = 1
for _ in range(K):
    Ac = [0] * (N + 1)
    dp = [0] * (N + 1)
    ndp = [0] * (N + 1)
    for i in range(N):
        Ac[i + 1] = Ac[i] + pre[i]
        Ac[i + 1] %= mod
    
    for i in range(M):
        dp[L[i]] += Ac[R[i]] - Ac[L[i]]
        dp[R[i]] -= Ac[R[i]] - Ac[L[i]]
        dp[L[i]] %= mod
        dp[R[i]] %= mod

    ndp[0] = dp[0]
    for i in range(N):
        ndp[i + 1] = ndp[i] + dp[i + 1]
        ndp[i + 1] %= mod

    ndp, pre = pre, ndp

print(pre[N - 1]%mod)
0