結果

問題 No.801 エレベーター
ユーザー kamojirokamojiro
提出日時 2019-03-17 22:53:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 228,736 KB
最終ジャッジ日時 2024-07-08 01:24:51
合計ジャッジ時間 11,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 79 ms
77,024 KB
testcase_04 AC 65 ms
77,056 KB
testcase_05 AC 67 ms
77,020 KB
testcase_06 AC 64 ms
76,928 KB
testcase_07 AC 65 ms
76,672 KB
testcase_08 AC 72 ms
76,672 KB
testcase_09 AC 63 ms
76,928 KB
testcase_10 AC 64 ms
76,928 KB
testcase_11 AC 67 ms
77,056 KB
testcase_12 AC 65 ms
76,928 KB
testcase_13 AC 621 ms
228,224 KB
testcase_14 AC 626 ms
228,736 KB
testcase_15 AC 642 ms
227,200 KB
testcase_16 AC 614 ms
227,200 KB
testcase_17 AC 634 ms
226,944 KB
testcase_18 AC 628 ms
226,688 KB
testcase_19 AC 629 ms
227,200 KB
testcase_20 AC 618 ms
226,944 KB
testcase_21 AC 633 ms
227,200 KB
testcase_22 AC 628 ms
228,400 KB
testcase_23 AC 602 ms
226,964 KB
testcase_24 AC 595 ms
227,712 KB
testcase_25 AC 606 ms
226,944 KB
testcase_26 AC 587 ms
227,280 KB
testcase_27 AC 594 ms
226,816 KB
testcase_28 AC 576 ms
228,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
Q = 10**9 + 7
N, M, K = map( int, input().split())
I = [ tuple( map( int, input().split())) for _ in range(M)]
dp = [ [0]*(N+2) for _ in range(K+1)]
dp[0][1] = 1
for k in range(K):
    dp[k] = list( map( lambda x:x%Q, accumulate( dp[k])))
    for i in range(M):
        l, r = I[i]
        c = dp[k][r] - dp[k][l-1]
        dp[k+1][l] += c
        dp[k+1][r+1] -=c
    dp[k+1] = list( map( lambda x: x%Q, accumulate(dp[k+1])))
print(dp[K][N])
0