結果

問題 No.801 エレベーター
ユーザー AEnAEn
提出日時 2022-12-30 13:09:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 77,412 KB
最終ジャッジ日時 2024-05-04 03:17:21
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,132 KB
testcase_01 AC 32 ms
52,220 KB
testcase_02 AC 33 ms
53,296 KB
testcase_03 AC 51 ms
65,428 KB
testcase_04 AC 53 ms
66,032 KB
testcase_05 AC 53 ms
65,464 KB
testcase_06 AC 58 ms
65,576 KB
testcase_07 AC 59 ms
66,948 KB
testcase_08 AC 58 ms
65,888 KB
testcase_09 AC 53 ms
65,972 KB
testcase_10 AC 53 ms
65,468 KB
testcase_11 AC 52 ms
66,540 KB
testcase_12 AC 52 ms
66,896 KB
testcase_13 AC 328 ms
77,204 KB
testcase_14 AC 348 ms
76,988 KB
testcase_15 AC 327 ms
77,248 KB
testcase_16 AC 329 ms
76,996 KB
testcase_17 AC 323 ms
76,992 KB
testcase_18 AC 331 ms
77,100 KB
testcase_19 AC 332 ms
76,984 KB
testcase_20 AC 332 ms
77,356 KB
testcase_21 AC 324 ms
77,020 KB
testcase_22 AC 327 ms
77,252 KB
testcase_23 AC 323 ms
77,412 KB
testcase_24 AC 319 ms
77,036 KB
testcase_25 AC 324 ms
77,272 KB
testcase_26 AC 324 ms
77,248 KB
testcase_27 AC 321 ms
77,004 KB
testcase_28 AC 252 ms
76,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
ele = [list(map(int, input().split())) for _ in range(M)]

dp = [0]*(N+1)
dp[0] = 1
dp[1] = -1
mod = 10**9+7
for i in range(K):
    for j in range(N):
        dp[j+1] += dp[j]
        dp[j+1] %= mod
    for j in range(N-1):
        dp[j+1] += dp[j]
        dp[j+1] %= mod
    ndp = [0]*(N+1)
    for l, r in ele:
        num = dp[r-1] if l==1 else dp[r-1]-dp[l-2]
        num %= mod
        ndp[l-1] += num
        ndp[l-1] %= mod
        ndp[r] -= num
        ndp[r] %= mod
    dp = ndp
for i in range(N):
    dp[i+1] += dp[i]
    dp[i+1] %= mod
print(dp[-2])
        
0