結果

問題 No.1492 01文字列と転倒
ユーザー titiatitia
提出日時 2024-10-27 05:11:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 186,232 KB
最終ジャッジ日時 2024-10-27 05:11:35
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,340 KB
testcase_01 AC 40 ms
54,396 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import Counter

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

Q=Counter()
Q[0,0]=1

for i in range(1,N+1):
    NQ=Counter()

    for zero,ten in Q:
        now=Q[zero,ten]

        for j in range(max(zero,i),N+1):
            ten2=(i-1)*(j-zero)+ten
            NQ[j,ten2]=(NQ[j,ten2]+now)%mod
    Q=NQ

for i in range(N*N+1):
    print(Q[N,i])
0