結果

問題 No.801 エレベーター
ユーザー 👑 rin204rin204
提出日時 2022-07-04 17:59:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 79,668 KB
最終ジャッジ日時 2024-05-08 07:26:40
合計ジャッジ時間 9,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 61 ms
70,528 KB
testcase_04 AC 61 ms
70,272 KB
testcase_05 AC 66 ms
69,888 KB
testcase_06 AC 62 ms
69,632 KB
testcase_07 AC 62 ms
70,016 KB
testcase_08 AC 63 ms
70,656 KB
testcase_09 AC 63 ms
69,888 KB
testcase_10 AC 63 ms
69,888 KB
testcase_11 AC 62 ms
70,144 KB
testcase_12 AC 62 ms
70,016 KB
testcase_13 AC 483 ms
79,432 KB
testcase_14 AC 479 ms
79,452 KB
testcase_15 AC 477 ms
79,604 KB
testcase_16 AC 479 ms
79,604 KB
testcase_17 AC 481 ms
79,272 KB
testcase_18 AC 482 ms
79,456 KB
testcase_19 AC 480 ms
79,400 KB
testcase_20 AC 479 ms
79,392 KB
testcase_21 AC 482 ms
79,648 KB
testcase_22 AC 481 ms
79,628 KB
testcase_23 AC 439 ms
79,668 KB
testcase_24 AC 436 ms
79,476 KB
testcase_25 AC 442 ms
79,368 KB
testcase_26 AC 440 ms
79,260 KB
testcase_27 AC 436 ms
79,396 KB
testcase_28 AC 382 ms
79,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, m, k = map(int, input().split())

lr = [list(map(int, input().split())) for _ in range(m)]
dp = [0] * (n + 1)
dp[0] = 1
for _ in range(k):
    cum = [0]
    for d in dp[:-1]:
        cum.append(cum[-1] + d)
        if cum[-1] >= MOD:
            cum[-1] -= MOD
    ndp = [0] * (n + 1)
    for l, r in lr:
        plus = (cum[r] - cum[l - 1]) % MOD
        ndp[l - 1] += plus
        ndp[r] -= plus
    for i in range(1, n + 1):
        ndp[i] += ndp[i - 1]
        ndp[i] %= MOD
    dp = ndp
print(dp[n - 1])
0