結果

問題 No.1492 01文字列と転倒
ユーザー 小野寺健小野寺健
提出日時 2021-05-04 17:10:50
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 690 bytes
コンパイル時間 3,761 ms
コンパイル使用メモリ 77,704 KB
実行使用メモリ 745,324 KB
最終ジャッジ日時 2024-07-23 12:26:29
合計ジャッジ時間 27,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,924 KB
testcase_01 AC 131 ms
54,252 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 138 ms
54,524 KB
testcase_10 AC 131 ms
54,120 KB
testcase_11 AC 137 ms
54,076 KB
testcase_12 AC 134 ms
54,060 KB
testcase_13 AC 128 ms
54,072 KB
testcase_14 MLE -
testcase_15 AC 187 ms
54,396 KB
testcase_16 AC 218 ms
65,820 KB
testcase_17 MLE -
testcase_18 AC 234 ms
66,472 KB
testcase_19 AC 151 ms
54,040 KB
testcase_20 AC 202 ms
63,248 KB
testcase_21 MLE -
testcase_22 AC 230 ms
66,444 KB
testcase_23 AC 205 ms
58,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No1492 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		scan.close();
		int[][][] dp = new int[2*N][N+1][N*N+1];
		dp[0][0][0] = 1;
		for (int i=0; i < 2*N-1; i++) {
			for (int j=0; j <= N; j++) {
				for (int k=0; k <= N*N; k++) {
					if (k+j <= N*N && i+1-j <= N) {
						dp[i+1][j][k+j] = (dp[i+1][j][k+j] +dp[i][j][k]) % M;
					}
					if (i-j+1 >= j+1 && j+1 <= N) {
						dp[i+1][j+1][k] = (dp[i+1][j+1][k] + dp[i][j][k]) % M;
					}
				}
			}
		}
		for (int i=0; i <= N*N; i++) {
			System.out.println(dp[2*N-1][N][i]);
		}
	}

}
0