結果

問題 No.1492 01文字列と転倒
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-30 21:52:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 985 ms / 4,000 ms
コード長 568 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 280,212 KB
最終ジャッジ日時 2024-07-19 01:15:22
合計ジャッジ時間 9,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 985 ms
280,088 KB
testcase_03 AC 916 ms
277,888 KB
testcase_04 AC 863 ms
278,384 KB
testcase_05 AC 718 ms
231,168 KB
testcase_06 AC 748 ms
241,188 KB
testcase_07 AC 825 ms
271,436 KB
testcase_08 AC 974 ms
280,212 KB
testcase_09 AC 42 ms
59,520 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 745 ms
240,896 KB
testcase_15 AC 54 ms
65,280 KB
testcase_16 AC 74 ms
76,712 KB
testcase_17 AC 716 ms
231,368 KB
testcase_18 AC 77 ms
76,524 KB
testcase_19 AC 51 ms
63,872 KB
testcase_20 AC 66 ms
73,728 KB
testcase_21 AC 589 ms
189,976 KB
testcase_22 AC 74 ms
76,464 KB
testcase_23 AC 61 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,mod = map(int,input().split())
M = n*(n-1)//2
dp = [[0]*(M+1) for i in range(n+1)]
dp[0][0] = 1

for i in range(2*n):
    ndp = [[0]*(M+1) for j in range(n+1)]
    for j in range(n+1):
        for k in range(M+1):
            if dp[j][k] == 0:
                continue
            if j != n:
                ndp[j+1][k] += dp[j][k]
                ndp[j+1][k] %= mod
            if i-j >= j:
                continue
            ndp[j][k+n-j] += dp[j][k]
            ndp[j][k+n-j] %= mod
    dp = ndp
for i in dp[n]:
    print(i)
for i in range(n**2-M):
    print(0)
0