結果

問題 No.801 エレベーター
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-08 11:56:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,448 KB
最終ジャッジ日時 2024-10-08 11:57:01
合計ジャッジ時間 7,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 53 ms
64,512 KB
testcase_04 AC 53 ms
64,896 KB
testcase_05 AC 58 ms
64,384 KB
testcase_06 AC 54 ms
64,384 KB
testcase_07 AC 55 ms
65,280 KB
testcase_08 AC 54 ms
64,896 KB
testcase_09 AC 55 ms
65,152 KB
testcase_10 AC 54 ms
64,768 KB
testcase_11 AC 67 ms
64,512 KB
testcase_12 AC 55 ms
64,640 KB
testcase_13 AC 338 ms
77,016 KB
testcase_14 AC 330 ms
77,076 KB
testcase_15 AC 326 ms
77,324 KB
testcase_16 AC 351 ms
77,400 KB
testcase_17 AC 351 ms
77,144 KB
testcase_18 AC 331 ms
77,268 KB
testcase_19 AC 356 ms
77,128 KB
testcase_20 AC 333 ms
77,052 KB
testcase_21 AC 335 ms
77,384 KB
testcase_22 AC 335 ms
76,860 KB
testcase_23 AC 349 ms
77,276 KB
testcase_24 AC 332 ms
77,424 KB
testcase_25 AC 324 ms
77,448 KB
testcase_26 AC 338 ms
77,264 KB
testcase_27 AC 340 ms
76,888 KB
testcase_28 AC 265 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 10**9 + 7
dp = [0] + [1]*N

for _ in range(K):
    nex = [0] * (N+1)
    for li, ri in data:
        si = dp[ri] - dp[li-1]
        nex[li] += si
        nex[li] %= MOD
        if ri < N:
            nex[ri+1] -= si
            nex[ri+1] %= MOD
    
    for i in range(1, N+1):
        nex[i] += nex[i-1]
        nex[i] %= MOD
    
    for i in range(1, N+1):
        nex[i] += nex[i-1]
        nex[i] %= MOD
    
    dp = nex

print((dp[N] - dp[N-1]) % MOD)
0