結果

問題 No.2926 Botaoshi
ユーザー rlangevinrlangevin
提出日時 2024-10-16 12:11:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-10-16 12:11:07
合計ジャッジ時間 6,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 44 ms
51,584 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 129 ms
85,376 KB
testcase_13 AC 115 ms
84,608 KB
testcase_14 AC 120 ms
84,992 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 109 ms
82,432 KB
testcase_17 AC 122 ms
84,224 KB
testcase_18 AC 86 ms
77,184 KB
testcase_19 AC 127 ms
80,768 KB
testcase_20 AC 93 ms
77,952 KB
testcase_21 AC 108 ms
79,488 KB
testcase_22 AC 107 ms
80,640 KB
testcase_23 AC 76 ms
76,800 KB
testcase_24 AC 112 ms
81,408 KB
testcase_25 AC 88 ms
76,928 KB
testcase_26 AC 120 ms
82,432 KB
testcase_27 AC 94 ms
79,616 KB
testcase_28 AC 73 ms
76,416 KB
testcase_29 AC 71 ms
75,904 KB
testcase_30 AC 84 ms
78,336 KB
testcase_31 AC 83 ms
77,440 KB
testcase_32 AC 99 ms
78,464 KB
testcase_33 AC 117 ms
82,048 KB
testcase_34 AC 102 ms
80,768 KB
testcase_35 AC 67 ms
67,456 KB
testcase_36 AC 123 ms
85,248 KB
testcase_37 AC 133 ms
84,864 KB
testcase_38 AC 128 ms
84,864 KB
testcase_39 AC 130 ms
84,992 KB
testcase_40 AC 132 ms
84,864 KB
testcase_41 AC 111 ms
85,120 KB
testcase_42 AC 108 ms
85,120 KB
testcase_43 AC 103 ms
85,248 KB
testcase_44 AC 106 ms
84,480 KB
testcase_45 AC 103 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
mod = 998244353
pre = [1, 0, 0]
for i in range(N):
    dp = [0, 0, 0]
    if S[i] == "L" or S[i] == ".":
        dp[0] += (pre[0] + pre[2]) % mod
    if S[i] == "R" or S[i] == ".":
        dp[1] += sum(pre) % mod
    if S[i] == "U" or S[i] == ".":
        dp[2] += sum(pre) % mod
    pre, dp = dp, pre
    
print(sum(pre) % mod)
0