結果

問題 No.801 エレベーター
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-18 16:50:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,596 KB
最終ジャッジ日時 2024-07-18 11:21:19
合計ジャッジ時間 9,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 63 ms
76,284 KB
testcase_04 AC 64 ms
76,288 KB
testcase_05 AC 63 ms
76,196 KB
testcase_06 AC 64 ms
76,336 KB
testcase_07 AC 65 ms
76,264 KB
testcase_08 AC 65 ms
76,288 KB
testcase_09 AC 65 ms
76,276 KB
testcase_10 AC 64 ms
76,032 KB
testcase_11 AC 62 ms
76,164 KB
testcase_12 AC 63 ms
76,288 KB
testcase_13 AC 454 ms
85,496 KB
testcase_14 AC 467 ms
85,288 KB
testcase_15 AC 452 ms
85,596 KB
testcase_16 AC 464 ms
85,216 KB
testcase_17 AC 456 ms
85,168 KB
testcase_18 AC 462 ms
85,396 KB
testcase_19 AC 475 ms
85,360 KB
testcase_20 AC 461 ms
85,524 KB
testcase_21 AC 456 ms
85,160 KB
testcase_22 AC 449 ms
85,296 KB
testcase_23 AC 445 ms
85,420 KB
testcase_24 AC 448 ms
85,368 KB
testcase_25 AC 443 ms
85,272 KB
testcase_26 AC 448 ms
85,292 KB
testcase_27 AC 455 ms
85,240 KB
testcase_28 AC 416 ms
85,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n, m, k = map(int, input().split())
mod = 10**9+7
t = [tuple(map(int, input().split())) for _ in range(m)]

#dp[x]
#i回目の移動でxにいる場合の数
dp = [0]*(n+1)
dp[1] = 1
for i in range(k):
    tmp = [0]*(n+2)
    dpac = list(accumulate(dp))
    for l, r in t:
        tmp[l] += dpac[r] - dpac[l-1]
        tmp[r+1] -= dpac[r] - dpac[l-1]

    dp = list(map(lambda x: x%mod, accumulate(tmp)))
print(dp[-2])
0