結果

問題 No.790 ちきんの括弧並べ
ユーザー tentententen
提出日時 2022-08-03 09:57:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,278 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 50,500 KB
最終ジャッジ日時 2024-09-12 22:43:24
合計ジャッジ時間 3,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,428 KB
testcase_01 AC 55 ms
50,416 KB
testcase_02 AC 55 ms
50,144 KB
testcase_03 AC 55 ms
50,500 KB
testcase_04 AC 54 ms
50,036 KB
testcase_05 AC 55 ms
50,384 KB
testcase_06 AC 56 ms
49,912 KB
testcase_07 AC 55 ms
50,476 KB
testcase_08 AC 55 ms
50,004 KB
testcase_09 AC 57 ms
50,184 KB
testcase_10 AC 56 ms
50,240 KB
testcase_11 AC 57 ms
50,444 KB
testcase_12 AC 58 ms
50,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[][] dp = new long[n * 2 + 1][n + 1];
        dp[0][0] = 1;
        for (int i = 0; i < 2 * n; i++) {
            dp[i + 1][1] += dp[i][0];
            dp[i + 1][n - 1] += dp[i][n];
            for (int j = 1; j < n; j++) {
                dp[i + 1][j + 1] += dp[i][j];
                dp[i + 1][j - 1] += dp[i][j];
            }
        }
        System.out.println(dp[n * 2][0]);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0