結果

問題 No.790 ちきんの括弧並べ
ユーザー htensaihtensai
提出日時 2020-02-05 09:18:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-09-22 04:06:42
合計ジャッジ時間 4,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,316 KB
testcase_01 AC 131 ms
54,096 KB
testcase_02 AC 131 ms
54,084 KB
testcase_03 AC 132 ms
53,924 KB
testcase_04 AC 133 ms
54,236 KB
testcase_05 AC 132 ms
54,132 KB
testcase_06 AC 133 ms
54,124 KB
testcase_07 AC 135 ms
54,016 KB
testcase_08 AC 133 ms
54,084 KB
testcase_09 AC 135 ms
54,184 KB
testcase_10 AC 132 ms
54,212 KB
testcase_11 AC 131 ms
53,700 KB
testcase_12 AC 129 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static long[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        dp = new long[n + 1][n + 1];
        dp[0][0] = 1;
        System.out.println(dfw(n , n));
    }
    
    static long dfw(int open, int close) {
        if (open < 0 || close < 0) {
            return 0;
        }
        if (open < close) {
            return 0;
        }
        if (dp[open][close] != 0) {
            return dp[open][close];
        }
        dp[open][close] = dfw(open - 1, close) + dfw(open, close - 1);
        return dp[open][close];
    }
}
0