結果

問題 No.2524 Stripes
ユーザー ShirotsumeShirotsume
提出日時 2023-09-27 13:03:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 717,568 KB
最終ジャッジ日時 2024-07-20 07:10:30
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 46 ms
51,968 KB
testcase_03 WA -
testcase_04 MLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 MLE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 44 ms
51,840 KB
testcase_19 AC 45 ms
51,456 KB
testcase_20 AC 46 ms
51,968 KB
testcase_21 AC 46 ms
51,456 KB
testcase_22 AC 50 ms
51,584 KB
testcase_23 AC 47 ms
51,456 KB
testcase_24 AC 44 ms
51,712 KB
testcase_25 AC 43 ms
51,840 KB
testcase_26 AC 44 ms
51,712 KB
testcase_27 AC 43 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 愚直

import sys
input = sys.stdin.readline
MOD = 998244353

n = int(input())
if n >= 10000:
	exit()
s = [int(c == 'R') for c in input()[:-1]]

dp = [[[0] * 2 for _ in [0] * (n + 1)] for _ in [0] * n]
for i in range(n):
    dp[i][0][0] = dp[i][0][1] = 1
dp[0][1][s[0]] = 1
for i in range(1, n):
    for j in range(1, n + 1):
        for k in range(2):
            dp[i][j][k] += dp[i - 1][j][k]
            if(s[i] == k):
                dp[i][j][k] += dp[i - 1][j - 1][k ^ 1]
            dp[i][j][k] %= MOD
for j in range(1, n + 1):
    print(sum(dp[n - 1][j]))
0