結果

問題 No.801 エレベーター
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-23 02:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 231,680 KB
最終ジャッジ日時 2024-06-07 20:37:02
合計ジャッジ時間 11,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 76 ms
76,808 KB
testcase_04 AC 65 ms
76,928 KB
testcase_05 AC 63 ms
76,800 KB
testcase_06 AC 63 ms
76,544 KB
testcase_07 AC 65 ms
76,800 KB
testcase_08 AC 63 ms
76,544 KB
testcase_09 AC 64 ms
76,672 KB
testcase_10 AC 63 ms
76,800 KB
testcase_11 AC 63 ms
77,032 KB
testcase_12 AC 61 ms
76,288 KB
testcase_13 AC 672 ms
230,912 KB
testcase_14 AC 655 ms
231,424 KB
testcase_15 AC 598 ms
230,784 KB
testcase_16 AC 589 ms
231,168 KB
testcase_17 AC 594 ms
230,656 KB
testcase_18 AC 590 ms
230,792 KB
testcase_19 AC 603 ms
230,784 KB
testcase_20 AC 604 ms
230,656 KB
testcase_21 AC 638 ms
231,272 KB
testcase_22 AC 605 ms
231,040 KB
testcase_23 AC 585 ms
230,784 KB
testcase_24 AC 583 ms
230,656 KB
testcase_25 AC 591 ms
230,656 KB
testcase_26 AC 582 ms
231,680 KB
testcase_27 AC 589 ms
231,424 KB
testcase_28 AC 596 ms
230,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
mod = 10**9+7
L = [[0, 0] for i in range(m)]
for i in range(m):
    l, r = map(int, input().split())
    L[i][0] = l-1
    L[i][1] = r-1

dp = [[0]*n for _ in range(k+1)]
dp[0][0] = 1
from itertools import accumulate
for i in range(k):
    cum = [0] + dp[i]
    cum = list(accumulate(cum))
    imos = [0]*(n+1)
    for j in range(m):
        l, r = L[j]
        imos[l] += cum[r+1]%mod- cum[l]%mod
        imos[r+1] -= cum[r+1]%mod - cum[l]%mod
    cum = list(accumulate(imos))
    dp[i+1] = cum
#print(dp)
print(dp[k][n-1]%mod)
0