結果

問題 No.2926 Botaoshi
ユーザー FuyuruFuyuru
提出日時 2024-10-12 15:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 94,640 KB
最終ジャッジ日時 2024-10-12 15:14:08
合計ジャッジ時間 3,995 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,940 KB
testcase_01 AC 34 ms
53,272 KB
testcase_02 AC 36 ms
52,744 KB
testcase_03 AC 34 ms
52,688 KB
testcase_04 AC 33 ms
52,812 KB
testcase_05 AC 33 ms
52,320 KB
testcase_06 AC 35 ms
53,560 KB
testcase_07 AC 33 ms
52,548 KB
testcase_08 AC 34 ms
53,308 KB
testcase_09 AC 39 ms
52,932 KB
testcase_10 AC 35 ms
53,228 KB
testcase_11 AC 36 ms
52,392 KB
testcase_12 AC 83 ms
94,240 KB
testcase_13 AC 81 ms
94,068 KB
testcase_14 AC 79 ms
94,640 KB
testcase_15 AC 35 ms
52,480 KB
testcase_16 AC 87 ms
89,332 KB
testcase_17 AC 86 ms
92,456 KB
testcase_18 AC 50 ms
66,996 KB
testcase_19 AC 55 ms
74,184 KB
testcase_20 AC 53 ms
69,688 KB
testcase_21 AC 50 ms
71,168 KB
testcase_22 AC 51 ms
72,388 KB
testcase_23 AC 43 ms
62,824 KB
testcase_24 AC 56 ms
73,604 KB
testcase_25 AC 47 ms
65,112 KB
testcase_26 AC 77 ms
90,708 KB
testcase_27 AC 47 ms
69,356 KB
testcase_28 AC 41 ms
61,960 KB
testcase_29 AC 42 ms
62,368 KB
testcase_30 AC 45 ms
64,936 KB
testcase_31 AC 50 ms
66,884 KB
testcase_32 AC 54 ms
69,520 KB
testcase_33 AC 84 ms
89,256 KB
testcase_34 AC 62 ms
75,100 KB
testcase_35 AC 46 ms
64,736 KB
testcase_36 AC 82 ms
94,320 KB
testcase_37 AC 79 ms
94,512 KB
testcase_38 AC 78 ms
94,408 KB
testcase_39 AC 79 ms
94,076 KB
testcase_40 AC 91 ms
94,228 KB
testcase_41 AC 82 ms
94,248 KB
testcase_42 AC 86 ms
94,432 KB
testcase_43 AC 85 ms
94,588 KB
testcase_44 AC 84 ms
94,328 KB
testcase_45 AC 81 ms
93,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
dp = [[0,0] for _ in range(N+1)]
dp[0][0] = 1
mod = 998244353
for i in range(N):
    if S[i] == 'L':
        dp[i+1][0] = dp[i][0]
    elif S[i] == 'R':
        dp[i+1][1] = dp[i][0]+dp[i][1]
    elif S[i] == 'U':
        dp[i+1][0] = dp[i][0]+dp[i][1]
    else:
        dp[i+1][0] = dp[i][0]*2+dp[i][1]
        dp[i+1][1] = dp[i][0]+dp[i][1]
    dp[i+1][0] %= mod
    dp[i+1][1] %= mod
print(sum(dp[-1])%mod)
0