結果

問題 No.2541 Divide 01 String
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-10 17:12:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 88,604 KB
最終ジャッジ日時 2023-12-10 17:12:36
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,460 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 37 ms
53,460 KB
testcase_03 WA -
testcase_04 AC 76 ms
80,072 KB
testcase_05 WA -
testcase_06 AC 70 ms
79,776 KB
testcase_07 AC 102 ms
88,548 KB
testcase_08 WA -
testcase_09 AC 104 ms
88,364 KB
testcase_10 AC 50 ms
75,024 KB
testcase_11 AC 50 ms
75,152 KB
testcase_12 AC 50 ms
75,024 KB
testcase_13 WA -
testcase_14 AC 38 ms
53,460 KB
testcase_15 AC 37 ms
53,460 KB
testcase_16 AC 37 ms
53,460 KB
testcase_17 AC 37 ms
53,460 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def RLE(S: list) -> list:
    """
    入力をランレングス圧縮したリストを返す.
    [(value1,length1),(value2,length2),...]

    Parameters
    ----------
    S:list

    Examples
    --------
    >>> RLE('aaabbc')
    [('a', 3), ('b', 2), ('c', 1)]
    """
    from itertools import groupby

    res = [(k, len(list(g))) for k, g in groupby(S)]
    return res


N = int(input())
S = input()
R = RLE(S)
ans = 1
MOD = 998244353
for i in range(1, len(R) - 1):
    l = R[i - 1][0]
    mid = R[i][0]
    r = R[i + 1][0]
    if l == r == "1" and mid == "0":
        ans *= R[i][1] + 2
    if mid == "1":
        ans *= pow(2, R[i][1] - 1, MOD)
    ans %= MOD
print(ans)
0