結果

問題 No.790 ちきんの括弧並べ
ユーザー tentententen
提出日時 2020-11-18 12:07:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-07-23 08:54:40
合計ジャッジ時間 4,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,844 KB
testcase_01 AC 128 ms
53,840 KB
testcase_02 AC 126 ms
54,088 KB
testcase_03 AC 130 ms
54,088 KB
testcase_04 AC 128 ms
54,264 KB
testcase_05 AC 128 ms
54,076 KB
testcase_06 AC 127 ms
53,856 KB
testcase_07 AC 128 ms
54,132 KB
testcase_08 AC 127 ms
54,036 KB
testcase_09 AC 127 ms
53,892 KB
testcase_10 AC 115 ms
53,952 KB
testcase_11 AC 126 ms
54,100 KB
testcase_12 AC 128 ms
54,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long[][] dp = new long[n + 1][n + 1];
        dp[n][n] = 1;
        for (int i = 1; i <= 2 * n; i++) {
            int right;
            int left;
            if (i > n) {
                right = 2 * n - i;
                left = 0;
            } else {
                right = n;
                left = n - i;
            }
            while (left <= right) {
                if (left < n) {
                    dp[left][right] += dp[left + 1][right];
                }
                if (right < n) {
                    dp[left][right] += dp[left][right + 1];
                }
                left++;
                right--;
            }
        }
        System.out.println(dp[0][0]);
    }
}
0