結果

問題 No.801 エレベーター
ユーザー kamojirokamojiro
提出日時 2019-03-17 22:53:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 162,432 KB
最終ジャッジ日時 2024-07-08 01:24:01
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,256 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 129 ms
14,080 KB
testcase_04 AC 124 ms
14,208 KB
testcase_05 AC 123 ms
14,080 KB
testcase_06 AC 126 ms
14,208 KB
testcase_07 AC 129 ms
14,336 KB
testcase_08 AC 129 ms
14,336 KB
testcase_09 AC 123 ms
14,208 KB
testcase_10 AC 127 ms
14,208 KB
testcase_11 AC 125 ms
14,208 KB
testcase_12 AC 134 ms
14,080 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 #

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