結果

問題 No.1492 01文字列と転倒
ユーザー tentententen
提出日時 2021-11-08 16:39:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 763 ms / 4,000 ms
コード長 1,743 bytes
コンパイル時間 2,823 ms
コンパイル使用メモリ 77,768 KB
実行使用メモリ 468,936 KB
最終ジャッジ日時 2024-11-16 11:39:54
合計ジャッジ時間 11,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,112 KB
testcase_01 AC 48 ms
37,184 KB
testcase_02 AC 757 ms
462,048 KB
testcase_03 AC 724 ms
467,488 KB
testcase_04 AC 698 ms
468,936 KB
testcase_05 AC 548 ms
363,248 KB
testcase_06 AC 563 ms
363,556 KB
testcase_07 AC 686 ms
466,604 KB
testcase_08 AC 763 ms
459,728 KB
testcase_09 AC 49 ms
36,984 KB
testcase_10 AC 49 ms
37,216 KB
testcase_11 AC 57 ms
37,292 KB
testcase_12 AC 48 ms
37,064 KB
testcase_13 AC 47 ms
37,204 KB
testcase_14 AC 565 ms
362,488 KB
testcase_15 AC 51 ms
37,796 KB
testcase_16 AC 85 ms
45,972 KB
testcase_17 AC 543 ms
363,368 KB
testcase_18 AC 85 ms
45,528 KB
testcase_19 AC 49 ms
37,240 KB
testcase_20 AC 81 ms
45,652 KB
testcase_21 AC 528 ms
362,264 KB
testcase_22 AC 83 ms
45,856 KB
testcase_23 AC 61 ms
39,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[][][] dp = new int[n + 1][n + 1][n * n + 1];
        dp[0][0][0] = 1;
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j <= n; j++) {
                for (int k = 0; k <= i * j; k++) {
                    if (i < n) {
                        dp[i + 1][j][k + j] += dp[i][j][k];
                        dp[i + 1][j][k + j] %= m;
                    }
                    if (j < i) {
                        dp[i][j + 1][k] += dp[i][j][k];
                        dp[i][j + 1][k] %= m;
                    }
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int x : dp[n][n]) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
}
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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0