結果

問題 No.1492 01文字列と転倒
ユーザー 👑 rin204rin204
提出日時 2022-11-02 16:00:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,562 ms / 4,000 ms
コード長 541 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 254,032 KB
最終ジャッジ日時 2024-07-17 05:11:20
合計ジャッジ時間 14,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,008 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 1,425 ms
253,912 KB
testcase_03 AC 1,421 ms
242,256 KB
testcase_04 AC 1,562 ms
228,560 KB
testcase_05 AC 1,036 ms
211,568 KB
testcase_06 AC 1,084 ms
216,812 KB
testcase_07 AC 1,279 ms
224,876 KB
testcase_08 AC 1,433 ms
254,032 KB
testcase_09 AC 37 ms
53,040 KB
testcase_10 AC 36 ms
53,164 KB
testcase_11 AC 37 ms
53,896 KB
testcase_12 AC 36 ms
52,748 KB
testcase_13 AC 37 ms
52,544 KB
testcase_14 AC 1,077 ms
217,260 KB
testcase_15 AC 59 ms
69,480 KB
testcase_16 AC 86 ms
76,704 KB
testcase_17 AC 1,043 ms
211,560 KB
testcase_18 AC 85 ms
76,608 KB
testcase_19 AC 54 ms
66,592 KB
testcase_20 AC 76 ms
75,924 KB
testcase_21 AC 1,067 ms
193,284 KB
testcase_22 AC 87 ms
76,680 KB
testcase_23 AC 72 ms
75,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(o, z, t):
    return (o * (n + 1) + z) * (n * n + 1) + t

dp = {0:1}
for _ in range(2 * n):
    nex = {}
    for k, v in dp.items():
        t = k % (n * n + 1)
        k //= (n * n + 1)
        z = k % (n + 1)
        o = k // (n + 1)
        if z < n:
            nex[f(o, z + 1, t + o)] = (nex.get(f(o, z + 1, t + o), 0) + v) % MOD
        if o < z:
            nex[f(o + 1, z, t)] = (nex.get(f(o + 1, z, t), 0) + v) % MOD
    dp = nex

for i in range(n * n + 1):
    print(dp.get(f(n, n, i), 0))
0