結果

問題 No.2926 Botaoshi
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 15:21:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,028 KB
最終ジャッジ日時 2024-10-12 15:21:15
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
51,984 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,332 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 55 ms
75,852 KB
testcase_13 AC 57 ms
75,636 KB
testcase_14 AC 61 ms
75,560 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 67 ms
75,744 KB
testcase_17 AC 68 ms
75,904 KB
testcase_18 AC 57 ms
68,608 KB
testcase_19 AC 64 ms
75,648 KB
testcase_20 AC 57 ms
70,912 KB
testcase_21 AC 57 ms
75,488 KB
testcase_22 AC 59 ms
75,616 KB
testcase_23 AC 46 ms
62,592 KB
testcase_24 AC 59 ms
75,372 KB
testcase_25 AC 51 ms
66,560 KB
testcase_26 AC 62 ms
75,776 KB
testcase_27 AC 59 ms
75,388 KB
testcase_28 AC 46 ms
62,080 KB
testcase_29 AC 49 ms
62,336 KB
testcase_30 AC 52 ms
68,736 KB
testcase_31 AC 58 ms
67,456 KB
testcase_32 AC 62 ms
72,832 KB
testcase_33 AC 65 ms
75,648 KB
testcase_34 AC 65 ms
75,332 KB
testcase_35 AC 51 ms
61,952 KB
testcase_36 AC 63 ms
76,028 KB
testcase_37 AC 63 ms
75,936 KB
testcase_38 AC 58 ms
75,772 KB
testcase_39 AC 58 ms
75,648 KB
testcase_40 AC 63 ms
75,904 KB
testcase_41 AC 65 ms
75,712 KB
testcase_42 AC 67 ms
75,968 KB
testcase_43 AC 64 ms
75,640 KB
testcase_44 AC 63 ms
75,668 KB
testcase_45 AC 66 ms
75,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
q=[0,0,1]
M=998244353
for c in s:
  nq=[0,0,0]
  if c=="L":
    nq[0]+=q[0]+q[2]
    nq[1]+=0
    nq[2]+=0
  if c=="R":
    nq[0]+=0
    nq[1]+=q[0]+q[1]+q[2]
    nq[2]+=0
  if c=="U":
    nq[0]+=0
    nq[1]+=0
    nq[2]+=q[0]+q[1]+q[2]
  if c==".":
    nq[0]+=q[0]+q[2]
    nq[1]+=q[0]+q[1]+q[2]
    nq[2]+=q[0]+q[1]+q[2]
  nq[0]%=M
  nq[1]%=M
  nq[2]%=M
  q=nq
print(sum(q)%M)
0