結果

問題 No.1766 Tatsujin Remix
ユーザー tamatotamato
提出日時 2021-11-26 22:51:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 79,776 KB
最終ジャッジ日時 2024-06-29 18:20:24
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,380 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 35 ms
52,656 KB
testcase_03 AC 34 ms
53,144 KB
testcase_04 AC 45 ms
63,856 KB
testcase_05 AC 44 ms
63,248 KB
testcase_06 AC 47 ms
64,764 KB
testcase_07 AC 44 ms
63,372 KB
testcase_08 AC 39 ms
59,400 KB
testcase_09 AC 59 ms
74,788 KB
testcase_10 AC 55 ms
74,708 KB
testcase_11 AC 57 ms
76,052 KB
testcase_12 AC 59 ms
76,088 KB
testcase_13 AC 59 ms
76,716 KB
testcase_14 AC 63 ms
79,316 KB
testcase_15 AC 63 ms
79,776 KB
testcase_16 AC 70 ms
79,480 KB
testcase_17 AC 67 ms
79,404 KB
testcase_18 AC 67 ms
79,212 KB
testcase_19 AC 68 ms
79,264 KB
testcase_20 AC 65 ms
79,572 KB
testcase_21 AC 66 ms
79,384 KB
testcase_22 AC 68 ms
79,712 KB
testcase_23 AC 66 ms
79,452 KB
testcase_24 AC 53 ms
76,448 KB
testcase_25 AC 54 ms
77,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    S = []
    for _ in range(N):
        S.append(input().rstrip('\n'))
    S = "".join(S)
    N *= 16
    dp0 = [0] * (N+1)
    dp1 = [0] * (N+1)
    dp0[0] = 1
    for i, s in enumerate(S):
        if s == ".":
            if i & 1:
                dp0[i+1] = (dp0[i] + dp1[i])%mod
                if i+1 < N:
                    if S[i+1] == ".":
                        dp1[i + 1] = ((0 + dp1[i]) % mod * 2)%mod
                    else:
                        dp1[i+1] = (0 + dp1[i])%mod
                else:
                    dp1[i + 1] = ((0 + dp1[i]) % mod * 2) % mod
            else:
                dp0[i+1] = dp0[i]
                if i+1 < N:
                    if S[i+1] == ".":
                        dp1[i + 1] = ((dp0[i] + dp1[i]) % mod * 2)%mod
                    else:
                        dp1[i+1] = (dp0[i] + dp1[i])%mod
                else:
                    dp1[i + 1] = ((dp0[i] + dp1[i]) % mod * 2) % mod
        else:
            if i & 1 == 0:
                dp1[i+1] = (dp0[i] + dp1[i])%mod
            else:
                dp1[i+1] = dp1[i]
    print((dp0[-1] + dp1[-1])%mod)


if __name__ == '__main__':
    main()
0