結果

問題 No.1958 Bit Game
ユーザー kakel-san
提出日時 2022-05-27 22:31:18
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,290 bytes
コンパイル時間 1,522 ms
コンパイル使用メモリ 108,288 KB
実行使用メモリ 71,160 KB
最終ジャッジ日時 2024-09-20 16:09:14
合計ジャッジ時間 23,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, x, y) = (c[0], c[1], c[2]);
        var a = NList;
        var b = NList;
        var res = 0L;
        var mod = 998_244_353;
        for (var i = 0; i < 18; ++i)
        {
            long a1 = a.Sum(ai => (ai >> i) % 2);
            long b1 = b.Sum(bi => (bi >> i) % 2);
            var x_x = (long)x * y - a1 * b1;
            var x_o = a1 * b1;
            var o_x = x * (y - b1);
            var o_o = x * b1;
            var dp = new long[n + 1][];
            for (var j = 0; j < dp.Length; ++j) dp[j] = new long[2];
            dp[0][0] = 1;
            for (var j = 0; j + 1 < dp.Length; ++j)
            {
                dp[j + 1][0] = (dp[j][0] * x_x % mod + dp[j][1] * o_x % mod) % mod;
                dp[j + 1][1] = (dp[j][0] * x_o % mod + dp[j][1] * o_o % mod) % mod;
            }
            for (var j = 0; j < i; ++j) dp[n][1] = dp[n][1] * 2 % mod;
            res = (res + dp[n][1]) % mod;
        }
        WriteLine(res);
    }
}
0