結果

問題 No.801 エレベーター
ユーザー pluto77pluto77
提出日時 2019-11-18 16:19:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-10-01 20:15:29
合計ジャッジ時間 8,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 59 ms
75,776 KB
testcase_04 AC 59 ms
75,904 KB
testcase_05 AC 60 ms
75,904 KB
testcase_06 AC 60 ms
75,776 KB
testcase_07 AC 59 ms
75,904 KB
testcase_08 AC 60 ms
75,776 KB
testcase_09 AC 59 ms
75,904 KB
testcase_10 AC 60 ms
75,648 KB
testcase_11 AC 59 ms
76,032 KB
testcase_12 AC 59 ms
75,904 KB
testcase_13 AC 368 ms
85,120 KB
testcase_14 AC 368 ms
85,504 KB
testcase_15 AC 360 ms
85,120 KB
testcase_16 AC 384 ms
85,376 KB
testcase_17 AC 369 ms
85,120 KB
testcase_18 AC 364 ms
85,460 KB
testcase_19 AC 371 ms
84,992 KB
testcase_20 AC 381 ms
85,196 KB
testcase_21 AC 399 ms
85,248 KB
testcase_22 AC 390 ms
85,148 KB
testcase_23 AC 368 ms
85,188 KB
testcase_24 AC 375 ms
85,376 KB
testcase_25 AC 370 ms
84,992 KB
testcase_26 AC 378 ms
85,400 KB
testcase_27 AC 385 ms
85,504 KB
testcase_28 AC 340 ms
84,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki801
import itertools

mod=10**9+7
n,m,k=map(int,input().split())
lr=[]
for i in range(m):
 lr.append(list(map(int,input().split())))

dp=[0]*(n+1)
dp[1]=1
for i in range(k):
 t=[0]*(n+2)
 da=list(itertools.accumulate(dp))
 for l,r in lr:
  t[l]+=da[r]-da[l-1]
  t[r+1]-=da[r]-da[l-1]
 dp=list(map(lambda x:x%mod,itertools.accumulate(t)))
print(dp[-2])
0