結果

問題 No.2926 Botaoshi
ユーザー detteiuudetteiuu
提出日時 2024-10-12 15:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 96,860 KB
最終ジャッジ日時 2024-10-12 15:25:13
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 38 ms
51,712 KB
testcase_12 AC 132 ms
96,512 KB
testcase_13 AC 127 ms
95,744 KB
testcase_14 AC 127 ms
96,000 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 117 ms
91,136 KB
testcase_17 AC 129 ms
94,464 KB
testcase_18 AC 88 ms
79,488 KB
testcase_19 AC 110 ms
87,936 KB
testcase_20 AC 91 ms
81,344 KB
testcase_21 AC 101 ms
85,760 KB
testcase_22 AC 106 ms
87,424 KB
testcase_23 AC 67 ms
77,664 KB
testcase_24 AC 135 ms
89,092 KB
testcase_25 AC 86 ms
79,488 KB
testcase_26 AC 144 ms
91,904 KB
testcase_27 AC 107 ms
86,020 KB
testcase_28 AC 71 ms
77,804 KB
testcase_29 AC 62 ms
77,364 KB
testcase_30 AC 79 ms
81,152 KB
testcase_31 AC 85 ms
79,744 KB
testcase_32 AC 93 ms
82,844 KB
testcase_33 AC 119 ms
91,008 KB
testcase_34 AC 112 ms
89,344 KB
testcase_35 AC 63 ms
73,472 KB
testcase_36 AC 144 ms
96,648 KB
testcase_37 AC 137 ms
96,512 KB
testcase_38 AC 135 ms
96,512 KB
testcase_39 AC 129 ms
96,512 KB
testcase_40 AC 134 ms
96,384 KB
testcase_41 AC 116 ms
96,420 KB
testcase_42 AC 114 ms
96,860 KB
testcase_43 AC 112 ms
96,384 KB
testcase_44 AC 110 ms
95,872 KB
testcase_45 AC 128 ms
95,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

MOD = 998244353
dp = [[0]*3 for _ in range(N)]
if S[0] == ".":
    for i in range(3):
        dp[0][i] = 1
elif S[0] == "L":
    dp[0][1] = 1
else:
    dp[0][2] = 1

def judge(A, B):
    return A == B or A == "."

for i in range(1, N):
    if judge(S[i], "U"):
        dp[i][0] += sum(dp[i-1])%MOD
        dp[i][0] %= MOD
    if judge(S[i], "L"):
        dp[i][1] += (dp[i-1][0]+dp[i-1][1])%MOD
        dp[i][1] %= MOD
    if judge(S[i], "R"):
        dp[i][2] += sum(dp[i-1])%MOD
        dp[i][2] %= MOD

print(sum(dp[-1])%MOD)
0