結果

問題 No.801 エレベーター
ユーザー kohei2019kohei2019
提出日時 2022-04-14 00:05:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 77,628 KB
最終ジャッジ日時 2024-06-06 10:24:01
合計ジャッジ時間 7,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,860 KB
testcase_01 AC 41 ms
52,252 KB
testcase_02 AC 38 ms
54,088 KB
testcase_03 AC 56 ms
66,832 KB
testcase_04 AC 56 ms
65,652 KB
testcase_05 AC 57 ms
65,644 KB
testcase_06 AC 57 ms
65,980 KB
testcase_07 AC 60 ms
66,604 KB
testcase_08 AC 56 ms
66,076 KB
testcase_09 AC 59 ms
65,884 KB
testcase_10 AC 57 ms
66,684 KB
testcase_11 AC 57 ms
66,704 KB
testcase_12 AC 57 ms
66,064 KB
testcase_13 AC 326 ms
77,252 KB
testcase_14 AC 314 ms
77,508 KB
testcase_15 AC 316 ms
77,180 KB
testcase_16 AC 321 ms
77,012 KB
testcase_17 AC 319 ms
77,392 KB
testcase_18 AC 316 ms
77,628 KB
testcase_19 AC 328 ms
77,228 KB
testcase_20 AC 323 ms
77,384 KB
testcase_21 AC 322 ms
77,396 KB
testcase_22 AC 312 ms
77,468 KB
testcase_23 AC 320 ms
77,244 KB
testcase_24 AC 317 ms
77,252 KB
testcase_25 AC 326 ms
77,240 KB
testcase_26 AC 320 ms
77,252 KB
testcase_27 AC 323 ms
77,244 KB
testcase_28 AC 267 ms
77,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# いもす
N,M,K = map(int, input().split())
lsLR = [tuple(map(int,input().split())) for i in range(M)]
mod = 10**9+7
dp = [0]*(N+2)
dp[1] = 1
for i in range(K):
    imos = [0]*(N+2)
    for j in range(1,N+2):
        imos[j] = (imos[j-1]+dp[j])%mod
    dp = [0]*(N+2)
    for j in range(M):
        l,r = lsLR[j]
        cnt = (imos[r]-imos[l-1])%mod
        dp[l] += cnt
        dp[r+1] -= cnt
    for j in range(1,N+2):
        dp[j] = (dp[j-1]+dp[j])%mod
print(dp[-2]%mod)
0