結果

問題 No.2926 Botaoshi
ユーザー vwxyzvwxyz
提出日時 2024-10-12 14:52:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,784 KB
最終ジャッジ日時 2024-10-12 14:52:43
合計ジャッジ時間 5,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,244 KB
testcase_01 AC 38 ms
52,688 KB
testcase_02 AC 38 ms
52,952 KB
testcase_03 AC 39 ms
52,880 KB
testcase_04 AC 39 ms
52,600 KB
testcase_05 AC 39 ms
52,404 KB
testcase_06 AC 38 ms
52,836 KB
testcase_07 AC 39 ms
51,944 KB
testcase_08 AC 39 ms
52,484 KB
testcase_09 AC 39 ms
52,308 KB
testcase_10 AC 38 ms
52,164 KB
testcase_11 AC 38 ms
52,544 KB
testcase_12 AC 104 ms
76,476 KB
testcase_13 AC 103 ms
76,188 KB
testcase_14 AC 122 ms
76,324 KB
testcase_15 AC 44 ms
60,392 KB
testcase_16 AC 104 ms
76,184 KB
testcase_17 AC 114 ms
76,260 KB
testcase_18 AC 73 ms
76,040 KB
testcase_19 AC 99 ms
76,104 KB
testcase_20 AC 80 ms
76,116 KB
testcase_21 AC 94 ms
76,428 KB
testcase_22 AC 93 ms
76,428 KB
testcase_23 AC 71 ms
75,984 KB
testcase_24 AC 103 ms
76,496 KB
testcase_25 AC 75 ms
76,464 KB
testcase_26 AC 106 ms
76,784 KB
testcase_27 AC 99 ms
76,148 KB
testcase_28 AC 77 ms
76,056 KB
testcase_29 AC 73 ms
75,972 KB
testcase_30 AC 86 ms
76,064 KB
testcase_31 AC 76 ms
76,164 KB
testcase_32 AC 86 ms
76,300 KB
testcase_33 AC 107 ms
76,204 KB
testcase_34 AC 99 ms
76,196 KB
testcase_35 AC 64 ms
70,188 KB
testcase_36 AC 132 ms
76,504 KB
testcase_37 AC 137 ms
76,500 KB
testcase_38 AC 120 ms
76,420 KB
testcase_39 AC 122 ms
76,632 KB
testcase_40 AC 133 ms
76,440 KB
testcase_41 AC 110 ms
76,400 KB
testcase_42 AC 109 ms
76,512 KB
testcase_43 AC 107 ms
76,436 KB
testcase_44 AC 110 ms
76,676 KB
testcase_45 AC 107 ms
76,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
S=input()
dp=[0]*3
dp[0]=1
mod=998244353
for s in S:
    prev=dp
    dp=[0]*3
    for i in range(3):
        for j,t in enumerate("ULR"):
            if (s=="." or s==t) and (i,j)!=(2,1):
                dp[j]+=prev[i]
                dp[j]%=mod
ans=sum(dp)%mod
print(ans)
0