結果

問題 No.801 エレベーター
ユーザー roarisroaris
提出日時 2020-07-24 23:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 79,396 KB
最終ジャッジ日時 2024-06-25 22:25:54
合計ジャッジ時間 7,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,472 KB
testcase_01 AC 37 ms
53,776 KB
testcase_02 AC 39 ms
52,820 KB
testcase_03 AC 55 ms
69,476 KB
testcase_04 AC 54 ms
69,116 KB
testcase_05 AC 59 ms
68,996 KB
testcase_06 AC 55 ms
70,816 KB
testcase_07 AC 53 ms
69,100 KB
testcase_08 AC 54 ms
69,504 KB
testcase_09 AC 54 ms
69,532 KB
testcase_10 AC 53 ms
69,300 KB
testcase_11 AC 57 ms
70,104 KB
testcase_12 AC 55 ms
69,488 KB
testcase_13 AC 347 ms
78,932 KB
testcase_14 AC 349 ms
78,924 KB
testcase_15 AC 354 ms
79,016 KB
testcase_16 AC 343 ms
79,188 KB
testcase_17 AC 345 ms
79,016 KB
testcase_18 AC 358 ms
78,984 KB
testcase_19 AC 341 ms
79,396 KB
testcase_20 AC 350 ms
79,228 KB
testcase_21 AC 344 ms
78,892 KB
testcase_22 AC 345 ms
79,144 KB
testcase_23 AC 353 ms
79,116 KB
testcase_24 AC 350 ms
78,952 KB
testcase_25 AC 340 ms
79,192 KB
testcase_26 AC 343 ms
78,872 KB
testcase_27 AC 347 ms
78,984 KB
testcase_28 AC 324 ms
79,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M, K = map(int, input().split())
LR = [tuple(map(int, input().split())) for _ in range(M)]
dp = [0]*N
dp[0] = 1
MOD = 10**9+7

for _ in range(K):
    acc = [0]
    
    for dpi in dp:
        acc.append((acc[-1]+dpi)%MOD)
    
    imos = [0]*(N+1)
    
    for L, R in LR:
        imos[L-1] += acc[R]-acc[L-1]
        imos[R] -= acc[R]-acc[L-1]
    
    for i in range(1, N+1):
        imos[i] += imos[i-1]
        imos[i] %= MOD
    
    dp = imos[:-1]

print(dp[-1])
0