結果

問題 No.2541 Divide 01 String
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-10 17:15:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 81,652 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-09-27 04:08:25
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 63 ms
74,080 KB
testcase_04 AC 87 ms
84,096 KB
testcase_05 AC 108 ms
89,088 KB
testcase_06 AC 74 ms
80,000 KB
testcase_07 AC 106 ms
88,488 KB
testcase_08 AC 108 ms
88,384 KB
testcase_09 AC 110 ms
88,388 KB
testcase_10 AC 53 ms
75,264 KB
testcase_11 AC 53 ms
75,300 KB
testcase_12 AC 53 ms
75,112 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
51,996 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 52 ms
71,552 KB
testcase_19 AC 53 ms
71,168 KB
testcase_20 AC 53 ms
71,552 KB
testcase_21 AC 51 ms
68,096 KB
testcase_22 AC 51 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

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
if '1' not in S:
    exit(print(0))
for i in range(len(R)):
    mid = R[i][0]
    if mid == "1":
        ans *= pow(2, R[i][1] - 1, MOD)
    if 0 <= i - 1 and i + 1 <= len(R) - 1:
        l = R[i - 1][0]
        r = R[i + 1][0]
        if l == r == "1" and mid == "0":
            ans *= R[i][1] + 2
    ans %= MOD
print(ans)
0