結果

問題 No.801 エレベーター
ユーザー convexineqconvexineq
提出日時 2021-03-25 04:05:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,712 KB
最終ジャッジ日時 2024-05-05 05:41:29
合計ジャッジ時間 7,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 61 ms
64,768 KB
testcase_04 AC 62 ms
65,024 KB
testcase_05 AC 64 ms
64,768 KB
testcase_06 AC 68 ms
65,152 KB
testcase_07 AC 67 ms
64,896 KB
testcase_08 AC 65 ms
64,768 KB
testcase_09 AC 61 ms
65,024 KB
testcase_10 AC 62 ms
64,768 KB
testcase_11 AC 59 ms
64,896 KB
testcase_12 AC 64 ms
64,768 KB
testcase_13 AC 322 ms
77,464 KB
testcase_14 AC 334 ms
77,152 KB
testcase_15 AC 327 ms
77,268 KB
testcase_16 AC 331 ms
77,332 KB
testcase_17 AC 337 ms
77,440 KB
testcase_18 AC 335 ms
77,128 KB
testcase_19 AC 329 ms
77,184 KB
testcase_20 AC 333 ms
77,440 KB
testcase_21 AC 322 ms
77,200 KB
testcase_22 AC 324 ms
77,140 KB
testcase_23 AC 332 ms
77,712 KB
testcase_24 AC 331 ms
77,068 KB
testcase_25 AC 323 ms
77,196 KB
testcase_26 AC 330 ms
77,068 KB
testcase_27 AC 327 ms
77,464 KB
testcase_28 AC 299 ms
77,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
lr = [list(map(int,input().split())) for _ in range(m)]
for i in range(m):
    lr[i][0] -= 1
    lr[i][1] -= 1
MOD = 10**9+7
dp = [1]*(n+1)
for I in range(k):
    ndp = [0]*(n+1)
    for l,r in lr:
        v = dp[r] - (dp[l-1] if l else 0)
        ndp[l] += v
        ndp[l] %= MOD
        ndp[r+1] -= v
        ndp[r+1] %= MOD
    for i in range(1,n+1):
        ndp[i] += ndp[i-1]
        ndp[i] %= MOD
    dp = ndp
    if I==k-1: break
    for i in range(1,n+1):
        ndp[i] += ndp[i-1]
        ndp[i] %= MOD
print(dp[n-1]%MOD)
0