結果

問題 No.2926 Botaoshi
ユーザー timitimi
提出日時 2024-10-12 16:11:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-10-12 16:11:35
合計ジャッジ時間 4,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,512 KB
testcase_01 AC 41 ms
53,936 KB
testcase_02 AC 38 ms
55,652 KB
testcase_03 AC 38 ms
54,664 KB
testcase_04 AC 38 ms
53,692 KB
testcase_05 AC 37 ms
54,848 KB
testcase_06 AC 37 ms
54,804 KB
testcase_07 AC 39 ms
54,864 KB
testcase_08 AC 38 ms
53,764 KB
testcase_09 AC 38 ms
53,700 KB
testcase_10 AC 38 ms
54,336 KB
testcase_11 AC 37 ms
55,380 KB
testcase_12 AC 99 ms
76,396 KB
testcase_13 AC 100 ms
76,232 KB
testcase_14 AC 115 ms
76,400 KB
testcase_15 AC 38 ms
54,568 KB
testcase_16 AC 84 ms
76,260 KB
testcase_17 AC 101 ms
76,176 KB
testcase_18 AC 88 ms
75,920 KB
testcase_19 AC 84 ms
76,060 KB
testcase_20 AC 68 ms
76,148 KB
testcase_21 AC 87 ms
75,848 KB
testcase_22 AC 92 ms
75,916 KB
testcase_23 AC 64 ms
76,132 KB
testcase_24 AC 100 ms
76,232 KB
testcase_25 AC 72 ms
75,940 KB
testcase_26 AC 101 ms
76,068 KB
testcase_27 AC 93 ms
75,972 KB
testcase_28 AC 68 ms
76,160 KB
testcase_29 AC 68 ms
76,020 KB
testcase_30 AC 80 ms
76,100 KB
testcase_31 AC 67 ms
75,920 KB
testcase_32 AC 73 ms
76,080 KB
testcase_33 AC 93 ms
76,636 KB
testcase_34 AC 97 ms
76,052 KB
testcase_35 AC 55 ms
67,336 KB
testcase_36 AC 118 ms
76,720 KB
testcase_37 AC 118 ms
76,440 KB
testcase_38 AC 104 ms
76,288 KB
testcase_39 AC 97 ms
76,312 KB
testcase_40 AC 110 ms
76,760 KB
testcase_41 AC 80 ms
76,248 KB
testcase_42 AC 84 ms
76,372 KB
testcase_43 AC 84 ms
76,296 KB
testcase_44 AC 80 ms
76,340 KB
testcase_45 AC 85 ms
76,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
from collections import deque

dp=[0,1,0]
mod=998244353
for s in S:
  ndp=[0,0,0]
  if s=='U':
    ndp[1]=sum(dp) 
  elif s=='L':
    ndp[2]=dp[1]+dp[2]
  elif s=='R':
    ndp[0]=sum(dp)
  else:
    ndp[0]=sum(dp)
    ndp[1]=sum(dp) 
    ndp[2]=dp[1]+dp[2] 
  dp=[]
  for c in ndp:
    dp.append(c%mod)
    
print(sum(dp)%mod)
0