結果

問題 No.1492 01文字列と転倒
ユーザー mkawa2mkawa2
提出日時 2023-02-09 11:12:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 965 ms / 4,000 ms
コード長 1,163 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 92,108 KB
最終ジャッジ日時 2024-07-06 15:28:18
合計ジャッジ時間 9,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,700 KB
testcase_01 AC 36 ms
52,536 KB
testcase_02 AC 965 ms
91,976 KB
testcase_03 AC 892 ms
91,424 KB
testcase_04 AC 828 ms
90,180 KB
testcase_05 AC 721 ms
88,844 KB
testcase_06 AC 725 ms
88,812 KB
testcase_07 AC 803 ms
89,792 KB
testcase_08 AC 959 ms
92,108 KB
testcase_09 AC 38 ms
59,604 KB
testcase_10 AC 31 ms
53,696 KB
testcase_11 AC 32 ms
53,628 KB
testcase_12 AC 32 ms
53,412 KB
testcase_13 AC 30 ms
53,488 KB
testcase_14 AC 743 ms
89,140 KB
testcase_15 AC 45 ms
64,700 KB
testcase_16 AC 64 ms
69,080 KB
testcase_17 AC 720 ms
88,580 KB
testcase_18 AC 67 ms
68,256 KB
testcase_19 AC 44 ms
62,712 KB
testcase_20 AC 55 ms
66,620 KB
testcase_21 AC 593 ms
87,168 KB
testcase_22 AC 65 ms
68,772 KB
testcase_23 AC 58 ms
66,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

n, m = LI()
dp = [[0]*(n**2+1) for _ in range(n+1)]
ndp = [[0]*(n**2+1) for _ in range(n+1)]
ndp[0][0] = 1

for i in range(n+1):
    for j in range(i, n+1):
        if i == j == 0: continue
        for k in range(n**2+1):
            v = 0
            if j-1 >= i and k-i >= 0: v += ndp[j-1][k-i]
            if i: v += dp[j][k]
            ndp[j][k] = v%m
    dp, ndp = ndp, dp
    # p2D(dp)

for k in range(n**2+1):
    print(dp[n][k])
0