結果

問題 No.801 エレベーター
ユーザー H3PO4H3PO4
提出日時 2021-02-09 09:41:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 77,916 KB
最終ジャッジ日時 2024-07-06 14:56:09
合計ジャッジ時間 6,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,608 KB
testcase_01 AC 30 ms
52,564 KB
testcase_02 AC 32 ms
52,416 KB
testcase_03 AC 48 ms
66,176 KB
testcase_04 AC 51 ms
67,044 KB
testcase_05 AC 49 ms
67,188 KB
testcase_06 AC 50 ms
66,796 KB
testcase_07 AC 49 ms
67,284 KB
testcase_08 AC 50 ms
67,436 KB
testcase_09 AC 49 ms
67,364 KB
testcase_10 AC 50 ms
67,072 KB
testcase_11 AC 49 ms
65,944 KB
testcase_12 AC 51 ms
66,136 KB
testcase_13 AC 285 ms
77,532 KB
testcase_14 AC 294 ms
77,664 KB
testcase_15 AC 288 ms
77,464 KB
testcase_16 AC 292 ms
77,572 KB
testcase_17 AC 290 ms
77,520 KB
testcase_18 AC 287 ms
77,804 KB
testcase_19 AC 303 ms
77,784 KB
testcase_20 AC 289 ms
77,396 KB
testcase_21 AC 286 ms
77,664 KB
testcase_22 AC 292 ms
77,916 KB
testcase_23 AC 291 ms
77,764 KB
testcase_24 AC 291 ms
77,632 KB
testcase_25 AC 299 ms
77,624 KB
testcase_26 AC 290 ms
77,648 KB
testcase_27 AC 301 ms
77,908 KB
testcase_28 AC 253 ms
77,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * (N + 2)
dp[1] = 1


def accumulate_mod(X):
    res = [0] * len(X)
    res[0] = X[0]
    for i in range(1, len(X)):
        res[i] = (res[i - 1] + X[i]) % MOD
    return res


for _ in range(K):
    acc = accumulate_mod(dp)
    imos = [0] * (N + 2)
    for l, r in elv:
        s = acc[r] - acc[l - 1]
        imos[l] += s
        imos[r + 1] -= s
    dp = accumulate_mod(imos)
print(dp[N])
0