結果

問題 No.801 エレベーター
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 15:19:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 78,520 KB
最終ジャッジ日時 2024-06-25 18:03:24
合計ジャッジ時間 10,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 57 ms
67,072 KB
testcase_04 AC 59 ms
67,456 KB
testcase_05 AC 58 ms
67,456 KB
testcase_06 AC 57 ms
67,816 KB
testcase_07 AC 57 ms
67,840 KB
testcase_08 AC 57 ms
67,956 KB
testcase_09 AC 56 ms
67,840 KB
testcase_10 AC 58 ms
67,456 KB
testcase_11 AC 56 ms
67,456 KB
testcase_12 AC 56 ms
67,712 KB
testcase_13 AC 567 ms
78,080 KB
testcase_14 AC 564 ms
78,080 KB
testcase_15 AC 556 ms
78,224 KB
testcase_16 AC 561 ms
78,080 KB
testcase_17 AC 561 ms
78,248 KB
testcase_18 AC 564 ms
78,208 KB
testcase_19 AC 561 ms
78,340 KB
testcase_20 AC 572 ms
78,080 KB
testcase_21 AC 560 ms
78,080 KB
testcase_22 AC 561 ms
78,520 KB
testcase_23 AC 558 ms
78,384 KB
testcase_24 AC 562 ms
78,080 KB
testcase_25 AC 564 ms
78,092 KB
testcase_26 AC 564 ms
77,984 KB
testcase_27 AC 567 ms
78,080 KB
testcase_28 AC 545 ms
78,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def main3(n,m,k,lr):
  mod=10**9+7
  dp=[0]*(n+1)
  dp[1]=1
  for _ in range(k):
    sdp=[0]
    for x in dp:sdp.append((sdp[-1]+x)%mod)
    ndp=[0]*(n+1)
    for l,r in lr:
      tmp=sdp[r+1]-sdp[l]
      ndp[l]+=tmp
      if r!=n:
        ndp[r+1]-=tmp
    for i in range(n):ndp[i+1]=(ndp[i+1]+ndp[i])%mod
    dp=ndp
  return dp[n]

if __name__=='__main__':
  n,m,k=map(int,input().split())
  lr=[list(map(int,input().split())) for _ in range(m)]
  ret=main3(n,m,k,lr)
  print(ret)
0