結果

問題 No.801 エレベーター
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-19 07:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 80,940 KB
最終ジャッジ日時 2024-09-13 03:40:02
合計ジャッジ時間 7,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,740 KB
testcase_01 AC 37 ms
52,896 KB
testcase_02 AC 37 ms
52,744 KB
testcase_03 AC 56 ms
70,636 KB
testcase_04 AC 57 ms
71,280 KB
testcase_05 AC 57 ms
70,200 KB
testcase_06 AC 57 ms
71,524 KB
testcase_07 AC 57 ms
70,344 KB
testcase_08 AC 62 ms
71,104 KB
testcase_09 AC 56 ms
71,316 KB
testcase_10 AC 57 ms
71,396 KB
testcase_11 AC 56 ms
70,388 KB
testcase_12 AC 55 ms
71,000 KB
testcase_13 AC 351 ms
80,692 KB
testcase_14 AC 352 ms
80,656 KB
testcase_15 AC 352 ms
80,532 KB
testcase_16 AC 367 ms
80,668 KB
testcase_17 AC 367 ms
80,724 KB
testcase_18 AC 357 ms
80,532 KB
testcase_19 AC 371 ms
80,724 KB
testcase_20 AC 376 ms
80,684 KB
testcase_21 AC 373 ms
80,516 KB
testcase_22 AC 353 ms
80,660 KB
testcase_23 AC 371 ms
80,940 KB
testcase_24 AC 376 ms
80,668 KB
testcase_25 AC 375 ms
80,816 KB
testcase_26 AC 365 ms
80,668 KB
testcase_27 AC 376 ms
80,800 KB
testcase_28 AC 332 ms
80,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 10**9+7
dp = [0] * (N+1)
dp[1] = 1

for i in range(1, K+1):
    imos = [0] * (N+2)
    ruiseki = [0]

    for d in dp[1:]:
        ruiseki.append( ruiseki[-1] + d )
    # print("ruiseki: ", ruiseki)

    for j in range(M): # $B%(%l%Y!<%?A4It(B
        l,r = LR[j]
        _sum = ruiseki[r] - ruiseki[l-1]
        imos[l] += _sum
        imos[r+1] -= _sum

    # print("imos: ", imos)
    ndp = [0] * (N+1) 

    for i in range(1,N+1):
         ndp[i] = (ndp[i-1] + imos[i]) % mod
         # print("i: ",i ,"ndp: ", ndp)

    dp  = ndp
print(dp[N] % mod)

0