結果

問題 No.801 エレベーター
ユーザー tpynerivertpyneriver
提出日時 2019-03-18 22:01:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-07-19 05:31:59
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 65 ms
75,904 KB
testcase_04 AC 68 ms
75,776 KB
testcase_05 AC 66 ms
75,776 KB
testcase_06 AC 63 ms
75,904 KB
testcase_07 AC 64 ms
75,648 KB
testcase_08 AC 66 ms
75,904 KB
testcase_09 AC 65 ms
75,776 KB
testcase_10 AC 67 ms
76,032 KB
testcase_11 AC 69 ms
75,776 KB
testcase_12 AC 67 ms
75,776 KB
testcase_13 AC 350 ms
85,120 KB
testcase_14 AC 363 ms
84,992 KB
testcase_15 AC 364 ms
84,736 KB
testcase_16 AC 367 ms
84,992 KB
testcase_17 AC 356 ms
84,736 KB
testcase_18 AC 374 ms
85,120 KB
testcase_19 AC 379 ms
84,992 KB
testcase_20 AC 363 ms
84,864 KB
testcase_21 AC 351 ms
84,864 KB
testcase_22 AC 351 ms
85,248 KB
testcase_23 AC 354 ms
84,992 KB
testcase_24 AC 360 ms
85,120 KB
testcase_25 AC 353 ms
84,864 KB
testcase_26 AC 356 ms
84,992 KB
testcase_27 AC 352 ms
85,120 KB
testcase_28 AC 328 ms
84,864 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 = [x%mod for x in accumulate(dp1)]   
    #dp = list(map(lambda x: x % mod, accumulate(dp1)))
print(dp[-2])
0