結果

問題 No.801 エレベーター
ユーザー htensaihtensai
提出日時 2019-12-11 11:27:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 618 ms / 2,000 ms
コード長 1,311 bytes
コンパイル時間 2,658 ms
コンパイル使用メモリ 76,968 KB
実行使用メモリ 127,308 KB
最終ジャッジ日時 2024-06-24 07:38:12
合計ジャッジ時間 14,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
52,980 KB
testcase_01 AC 128 ms
54,164 KB
testcase_02 AC 127 ms
54,208 KB
testcase_03 AC 198 ms
56,632 KB
testcase_04 AC 204 ms
56,544 KB
testcase_05 AC 207 ms
54,428 KB
testcase_06 AC 203 ms
56,468 KB
testcase_07 AC 204 ms
56,496 KB
testcase_08 AC 202 ms
56,360 KB
testcase_09 AC 203 ms
56,664 KB
testcase_10 AC 205 ms
56,508 KB
testcase_11 AC 200 ms
54,504 KB
testcase_12 AC 205 ms
56,660 KB
testcase_13 AC 618 ms
126,600 KB
testcase_14 AC 579 ms
126,956 KB
testcase_15 AC 577 ms
127,308 KB
testcase_16 AC 580 ms
127,280 KB
testcase_17 AC 579 ms
126,928 KB
testcase_18 AC 558 ms
126,468 KB
testcase_19 AC 567 ms
126,844 KB
testcase_20 AC 570 ms
126,644 KB
testcase_21 AC 568 ms
127,076 KB
testcase_22 AC 561 ms
126,500 KB
testcase_23 AC 552 ms
126,440 KB
testcase_24 AC 537 ms
126,204 KB
testcase_25 AC 553 ms
126,724 KB
testcase_26 AC 566 ms
126,792 KB
testcase_27 AC 544 ms
127,184 KB
testcase_28 AC 557 ms
127,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        int[] lArr = new int[m];
        int[] rArr = new int[m];
        for (int i = 0; i < m; i++) {
            lArr[i] = sc.nextInt();
            rArr[i] = sc.nextInt();
        }
        long[][] dp = new long[k + 1][n + 2];
        Arrays.fill(dp[0], 1);
        dp[0][0] = 0;
        dp[0][n + 1] = 0;
        for (int i = 1; i <= k; i++) {
            for (int j = 0; j < m; j++) {
                long amount = (dp[i - 1][rArr[j]] - dp[i - 1][lArr[j] - 1] + MOD) % MOD;
                dp[i][lArr[j]] += amount;
                dp[i][lArr[j]] %= MOD;
                dp[i][rArr[j] + 1] += MOD - amount;
                dp[i][rArr[j] + 1] %= MOD;
            }
            for (int j = 1; j <= n + 1; j++) {
                dp[i][j] += dp[i][j - 1];
                dp[i][j] %= MOD;
            }
            for (int j = 1; j <= n + 1; j++) {
                dp[i][j] += dp[i][j - 1];
                dp[i][j] %= MOD;
            }
        }
        long ans = (dp[k][n] - dp[k][n - 1] + MOD) % MOD;
        System.out.println(ans);
    }
}
0