結果

問題 No.801 エレベーター
ユーザー tentententen
提出日時 2020-09-02 08:34:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 1,256 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 79,264 KB
最終ジャッジ日時 2024-11-21 14:02:16
合計ジャッジ時間 14,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,520 KB
testcase_01 AC 110 ms
40,284 KB
testcase_02 AC 124 ms
41,424 KB
testcase_03 AC 184 ms
42,436 KB
testcase_04 AC 194 ms
42,896 KB
testcase_05 AC 183 ms
42,988 KB
testcase_06 AC 188 ms
42,668 KB
testcase_07 AC 184 ms
42,300 KB
testcase_08 AC 186 ms
42,928 KB
testcase_09 AC 187 ms
42,496 KB
testcase_10 AC 188 ms
43,212 KB
testcase_11 AC 191 ms
42,632 KB
testcase_12 AC 183 ms
42,600 KB
testcase_13 AC 544 ms
78,976 KB
testcase_14 AC 515 ms
79,136 KB
testcase_15 AC 529 ms
79,028 KB
testcase_16 AC 524 ms
79,264 KB
testcase_17 AC 545 ms
78,964 KB
testcase_18 AC 528 ms
79,084 KB
testcase_19 AC 545 ms
79,012 KB
testcase_20 AC 513 ms
79,244 KB
testcase_21 AC 536 ms
78,984 KB
testcase_22 AC 537 ms
78,912 KB
testcase_23 AC 527 ms
78,988 KB
testcase_24 AC 518 ms
78,924 KB
testcase_25 AC 529 ms
78,720 KB
testcase_26 AC 527 ms
79,060 KB
testcase_27 AC 537 ms
78,936 KB
testcase_28 AC 515 ms
78,952 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[] lefts = new int[m];
        int[] rights = new int[m];
        for (int i = 0; i < m; i++) {
            lefts[i] = sc.nextInt();
            rights[i] = sc.nextInt();
        }
        int[][] dp = new int[k + 1][n + 2];
        Arrays.fill(dp[0], 1);
        dp[0][0] = 0;
        for (int i = 1; i <= k; i++) {
            for (int j = 0; j < m; j++) {
                int sum = (dp[i - 1][rights[j]] - dp[i - 1][lefts[j] - 1] + MOD) % MOD;
                dp[i][lefts[j]] += sum;
                dp[i][lefts[j]] %= MOD;
                dp[i][rights[j] + 1] += MOD - sum;
                dp[i][rights[j] + 1] %= MOD;
            }
            for (int j = 1; j <= n; j++) {
                dp[i][j] += dp[i][j - 1];
                dp[i][j] %= MOD;
            }
            for (int j = 1; j <= n; j++) {
                dp[i][j] += dp[i][j - 1];
                dp[i][j] %= MOD;
            }
        }
        System.out.println((dp[k][n] - dp[k][n - 1] + MOD) % MOD);
    }
}
0