結果

問題 No.2926 Botaoshi
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 15:29:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-10-12 15:29:07
合計ジャッジ時間 5,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,644 KB
testcase_01 AC 38 ms
52,872 KB
testcase_02 AC 37 ms
53,016 KB
testcase_03 AC 37 ms
52,768 KB
testcase_04 AC 36 ms
52,556 KB
testcase_05 AC 36 ms
52,216 KB
testcase_06 AC 37 ms
53,352 KB
testcase_07 AC 37 ms
53,076 KB
testcase_08 AC 36 ms
52,488 KB
testcase_09 AC 36 ms
52,212 KB
testcase_10 AC 36 ms
52,360 KB
testcase_11 AC 36 ms
52,336 KB
testcase_12 AC 124 ms
75,812 KB
testcase_13 AC 120 ms
76,416 KB
testcase_14 AC 137 ms
76,256 KB
testcase_15 AC 38 ms
52,280 KB
testcase_16 AC 101 ms
76,240 KB
testcase_17 AC 107 ms
76,356 KB
testcase_18 AC 75 ms
76,104 KB
testcase_19 AC 93 ms
76,064 KB
testcase_20 AC 79 ms
75,924 KB
testcase_21 AC 95 ms
75,800 KB
testcase_22 AC 106 ms
76,212 KB
testcase_23 AC 65 ms
75,484 KB
testcase_24 AC 104 ms
75,848 KB
testcase_25 AC 75 ms
75,576 KB
testcase_26 AC 119 ms
75,932 KB
testcase_27 AC 100 ms
75,940 KB
testcase_28 AC 64 ms
75,420 KB
testcase_29 AC 78 ms
76,312 KB
testcase_30 AC 84 ms
76,184 KB
testcase_31 AC 74 ms
75,676 KB
testcase_32 AC 82 ms
75,708 KB
testcase_33 AC 98 ms
76,152 KB
testcase_34 AC 98 ms
76,256 KB
testcase_35 AC 57 ms
68,440 KB
testcase_36 AC 131 ms
76,792 KB
testcase_37 AC 139 ms
76,996 KB
testcase_38 AC 130 ms
75,676 KB
testcase_39 AC 124 ms
76,064 KB
testcase_40 AC 134 ms
76,564 KB
testcase_41 AC 87 ms
75,896 KB
testcase_42 AC 92 ms
75,948 KB
testcase_43 AC 88 ms
76,116 KB
testcase_44 AC 87 ms
75,860 KB
testcase_45 AC 87 ms
76,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
MOD = 998244353

dp = [1,0,0]
for c in S:
    ndp = [0,0,0]
    if c == 'L':
        ndp[0] = sum(dp[:2]) % MOD
    elif c == 'U':
        ndp[1] = sum(dp) % MOD
    elif c == 'R':
        ndp[2] = sum(dp) % MOD
    else:
        ndp[0] = sum(dp[:2]) % MOD
        ndp[1] = sum(dp) % MOD
        ndp[2] = sum(dp) % MOD
    dp = ndp
print(sum(dp) % MOD)
0