結果

問題 No.801 エレベーター
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-08 11:56:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-10-08 11:56:29
合計ジャッジ時間 7,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 56 ms
64,640 KB
testcase_05 AC 63 ms
64,384 KB
testcase_06 AC 62 ms
64,768 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 61 ms
64,768 KB
testcase_11 AC 63 ms
64,768 KB
testcase_12 AC 62 ms
64,512 KB
testcase_13 AC 363 ms
77,012 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 341 ms
77,056 KB
testcase_18 WA -
testcase_19 AC 347 ms
77,020 KB
testcase_20 WA -
testcase_21 AC 346 ms
77,632 KB
testcase_22 AC 342 ms
77,148 KB
testcase_23 WA -
testcase_24 AC 340 ms
77,012 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 10**9 + 7
dp = [0] + [1]*N

for _ in range(K):
    nex = [0] * (N+1)
    for li, ri in data:
        si = dp[ri] - dp[li-1]
        nex[li] += si
        nex[li] %= MOD
        if ri < N:
            nex[ri+1] -= si
            nex[ri+1] %= MOD
    
    for i in range(1, N+1):
        nex[i] += nex[i-1]
        nex[i] %= MOD
    
    for i in range(1, N+1):
        nex[i] += nex[i-1]
        nex[i] %= MOD
    
    dp = nex

print(dp[N] - dp[N-1])
0