結果

問題 No.801 エレベーター
ユーザー tpynerivertpyneriver
提出日時 2019-03-18 00:51:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 85,400 KB
最終ジャッジ日時 2024-07-08 07:51:03
合計ジャッジ時間 9,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 63 ms
75,776 KB
testcase_04 AC 67 ms
75,732 KB
testcase_05 AC 63 ms
76,144 KB
testcase_06 AC 64 ms
76,032 KB
testcase_07 AC 69 ms
76,032 KB
testcase_08 AC 67 ms
75,776 KB
testcase_09 AC 63 ms
76,032 KB
testcase_10 AC 77 ms
76,032 KB
testcase_11 AC 64 ms
76,160 KB
testcase_12 AC 65 ms
76,032 KB
testcase_13 AC 479 ms
84,940 KB
testcase_14 AC 497 ms
85,400 KB
testcase_15 AC 470 ms
85,112 KB
testcase_16 AC 491 ms
85,036 KB
testcase_17 AC 487 ms
85,112 KB
testcase_18 AC 495 ms
84,964 KB
testcase_19 AC 493 ms
85,108 KB
testcase_20 AC 491 ms
85,292 KB
testcase_21 AC 488 ms
84,908 KB
testcase_22 AC 490 ms
85,168 KB
testcase_23 AC 485 ms
84,980 KB
testcase_24 AC 470 ms
85,332 KB
testcase_25 AC 458 ms
84,936 KB
testcase_26 AC 464 ms
85,288 KB
testcase_27 AC 487 ms
85,032 KB
testcase_28 AC 457 ms
84,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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