結果

問題 No.1492 01文字列と転倒
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-09 15:24:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 547 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 373,800 KB
最終ジャッジ日時 2024-11-14 10:24:02
合計ジャッジ時間 45,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,240 KB
testcase_01 AC 40 ms
354,420 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 3,831 ms
306,208 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 38 ms
52,956 KB
testcase_11 AC 39 ms
53,340 KB
testcase_12 AC 38 ms
53,364 KB
testcase_13 AC 38 ms
52,884 KB
testcase_14 TLE -
testcase_15 AC 48 ms
62,380 KB
testcase_16 AC 96 ms
77,608 KB
testcase_17 AC 3,819 ms
306,344 KB
testcase_18 AC 98 ms
77,448 KB
testcase_19 AC 46 ms
60,984 KB
testcase_20 AC 74 ms
76,336 KB
testcase_21 AC 3,125 ms
296,204 KB
testcase_22 AC 98 ms
77,704 KB
testcase_23 AC 62 ms
373,800 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