結果

問題 No.801 エレベーター
ユーザー NoneNone
提出日時 2021-04-16 22:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 81,568 KB
最終ジャッジ日時 2024-07-03 02:11:51
合計ジャッジ時間 7,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,760 KB
testcase_01 AC 38 ms
52,948 KB
testcase_02 AC 37 ms
52,832 KB
testcase_03 AC 55 ms
74,108 KB
testcase_04 AC 53 ms
73,556 KB
testcase_05 AC 53 ms
73,504 KB
testcase_06 AC 54 ms
73,624 KB
testcase_07 AC 53 ms
73,708 KB
testcase_08 AC 53 ms
73,504 KB
testcase_09 AC 57 ms
73,532 KB
testcase_10 AC 53 ms
73,628 KB
testcase_11 AC 54 ms
73,404 KB
testcase_12 AC 54 ms
73,856 KB
testcase_13 AC 363 ms
81,352 KB
testcase_14 AC 343 ms
81,324 KB
testcase_15 AC 358 ms
81,456 KB
testcase_16 AC 366 ms
80,948 KB
testcase_17 AC 380 ms
81,092 KB
testcase_18 AC 373 ms
81,564 KB
testcase_19 AC 373 ms
81,108 KB
testcase_20 AC 366 ms
81,348 KB
testcase_21 AC 365 ms
81,064 KB
testcase_22 AC 346 ms
81,568 KB
testcase_23 AC 383 ms
81,064 KB
testcase_24 AC 392 ms
80,972 KB
testcase_25 AC 364 ms
81,088 KB
testcase_26 AC 349 ms
81,072 KB
testcase_27 AC 353 ms
81,096 KB
testcase_28 AC 361 ms
81,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=10**9+7
N,M,K=map(int, input().split())
data=[]
for _ in range(M):
    l,r=map(int, input().split())
    l,r=l-1,r-1
    data.append((l,r))

dp=[0]*N
dp[0]=1
for t in range(K):
    acc=[0]
    for a in dp:
        acc.append(acc[-1]+a)

    _imos=[0]*(N+1)
    for l,r in data:
        c=acc[r+1]-acc[l]
        _imos[l]+=c
        _imos[r+1]-=c
        _imos[l]%=MOD
        _imos[r+1]%=MOD

    acc=[0]
    for a in _imos:
        acc.append((acc[-1]+a)%MOD)
    dp=acc[1:-1]

print(dp[-1])
0