結果

問題 No.2082 AND OR XOR
ユーザー tamatotamato
提出日時 2022-09-25 22:25:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,422 ms / 2,000 ms
コード長 1,306 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 78,696 KB
最終ジャッジ日時 2024-06-01 23:38:56
合計ジャッジ時間 27,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
67,996 KB
testcase_01 AC 51 ms
67,916 KB
testcase_02 AC 86 ms
76,144 KB
testcase_03 AC 1,169 ms
78,180 KB
testcase_04 AC 392 ms
76,708 KB
testcase_05 AC 716 ms
77,352 KB
testcase_06 AC 1,017 ms
77,820 KB
testcase_07 AC 806 ms
77,624 KB
testcase_08 AC 578 ms
76,896 KB
testcase_09 AC 337 ms
76,716 KB
testcase_10 AC 782 ms
77,592 KB
testcase_11 AC 574 ms
77,248 KB
testcase_12 AC 1,354 ms
78,420 KB
testcase_13 AC 673 ms
77,024 KB
testcase_14 AC 567 ms
77,032 KB
testcase_15 AC 834 ms
77,804 KB
testcase_16 AC 1,102 ms
78,124 KB
testcase_17 AC 899 ms
78,044 KB
testcase_18 AC 245 ms
76,376 KB
testcase_19 AC 1,100 ms
78,348 KB
testcase_20 AC 708 ms
77,180 KB
testcase_21 AC 952 ms
78,100 KB
testcase_22 AC 788 ms
77,400 KB
testcase_23 AC 1,221 ms
78,380 KB
testcase_24 AC 1,185 ms
78,048 KB
testcase_25 AC 1,254 ms
78,696 KB
testcase_26 AC 480 ms
76,816 KB
testcase_27 AC 676 ms
77,176 KB
testcase_28 AC 1,422 ms
78,508 KB
testcase_29 AC 1,412 ms
78,564 KB
testcase_30 AC 1,392 ms
78,436 KB
testcase_31 AC 1,400 ms
78,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


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

    N, a, b, c = map(int, input().split())
    Z = [[0] * 4 for _ in range(4)]
    for x in range(4):
        for y in range(4):
            Z[x][y] = (a * (x & y) + b * (x | y) + c * (x ^ y)) % 4

    ans = 0
    dp = [[0] * 256 for _ in range(4)]
    for i in range(4):
        state = 0
        for j in range(4):
            r = Z[i][j]
            state += r << (2 * j)
        dp[i][state] += 1
    for t in range(N - 1):
        dp_new = [[0] * 256 for _ in range(4)]
        for l in range(4):
            for state in range(256):
                A = []
                s = state
                for _ in range(4):
                    A.append(s % 4)
                    s >>= 2
                for x in range(4):
                    l_new = Z[l][x]
                    state_new = 0
                    for j in range(4):
                        r = A[Z[j][x]]
                        state_new += r << (2 * j)
                    dp_new[l_new][state_new] = (dp_new[l_new][state_new] + dp[l][state]) % mod
                    if t == N - 2:
                        if l_new == A[x]:
                            ans = (ans + dp[l][state]) % mod
        dp = dp_new

    print(ans)


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