結果

問題 No.801 エレベーター
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-18 20:18:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-18 20:18:19
合計ジャッジ時間 6,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 62 ms
64,384 KB
testcase_04 AC 58 ms
64,640 KB
testcase_05 AC 60 ms
64,768 KB
testcase_06 AC 61 ms
64,896 KB
testcase_07 AC 63 ms
65,152 KB
testcase_08 AC 76 ms
64,896 KB
testcase_09 AC 57 ms
64,896 KB
testcase_10 AC 57 ms
64,896 KB
testcase_11 AC 57 ms
65,024 KB
testcase_12 AC 55 ms
64,896 KB
testcase_13 AC 282 ms
77,128 KB
testcase_14 AC 294 ms
76,744 KB
testcase_15 AC 283 ms
77,184 KB
testcase_16 AC 311 ms
76,740 KB
testcase_17 AC 293 ms
76,992 KB
testcase_18 AC 286 ms
76,744 KB
testcase_19 AC 286 ms
76,744 KB
testcase_20 AC 310 ms
76,996 KB
testcase_21 AC 287 ms
76,740 KB
testcase_22 AC 288 ms
76,996 KB
testcase_23 AC 286 ms
77,128 KB
testcase_24 AC 335 ms
76,628 KB
testcase_25 AC 309 ms
77,004 KB
testcase_26 AC 285 ms
77,008 KB
testcase_27 AC 298 ms
77,008 KB
testcase_28 AC 268 ms
77,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
e=[tuple(map(int,input().split())) for i in range(m)]
M=10**9+7
q=[0]*(n+1)
q[1]=1
for i in range(1,n+1):
  q[i]+=q[i-1]
for _ in range(k):
  nq=[0]*(n+1)
  for l,r in e:
    nq[l]+=q[r]-q[l-1]
    if r+1<=n:
      nq[r+1]-=q[r]-q[l-1]
  for i in range(1,n+1):
    nq[i]+=nq[i-1]
    nq[i]%=M
  for i in range(1,n+1):
    nq[i]+=nq[i-1]
    nq[i]%=M
  q=nq
print((q[n]-q[n-1])%M)
0