結果

問題 No.1492 01文字列と転倒
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-09 15:23:17
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 546 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 284,640 KB
最終ジャッジ日時 2024-11-14 10:23:16
合計ジャッジ時間 36,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,176 KB
testcase_01 AC 38 ms
52,540 KB
testcase_02 TLE -
testcase_03 AC 3,817 ms
281,112 KB
testcase_04 AC 3,520 ms
284,640 KB
testcase_05 AC 3,008 ms
279,640 KB
testcase_06 AC 3,133 ms
279,304 KB
testcase_07 AC 3,384 ms
272,648 KB
testcase_08 TLE -
testcase_09 AC 44 ms
59,032 KB
testcase_10 AC 38 ms
52,268 KB
testcase_11 AC 39 ms
53,124 KB
testcase_12 AC 38 ms
53,812 KB
testcase_13 AC 37 ms
52,752 KB
testcase_14 AC 3,124 ms
279,360 KB
testcase_15 AC 54 ms
64,092 KB
testcase_16 AC 118 ms
77,252 KB
testcase_17 AC 3,027 ms
279,388 KB
testcase_18 AC 123 ms
77,284 KB
testcase_19 AC 48 ms
61,604 KB
testcase_20 AC 90 ms
75,996 KB
testcase_21 AC 2,565 ms
280,044 KB
testcase_22 AC 117 ms
77,752 KB
testcase_23 AC 73 ms
72,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    n, mod = map(int, input().split())

    dp = [[0]*(n**2+1) for i in range(n+1)]
    dp[0][0] = 1
    for i in range(n):
        nx = [[0]*(n**2+1) for i in range(n+1)]
        for j in range(n+1):
            for k in range(n**2+1):
                if j-1 >= 0:
                    nx[j][k] += nx[j-1][k]
                if j <= i and j <= k:
                    nx[j][k] += dp[j][k-j]
                nx[j][k] %= mod
        dp = nx
    for i in range(n**2+1):
        print(dp[n][i]%mod)

if __name__ == '__main__':
    main()
0