結果

問題 No.1958 Bit Game
ユーザー kakel-sankakel-san
提出日時 2022-05-27 23:25:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 909 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 1,538 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 71,156 KB
最終ジャッジ日時 2024-09-20 16:27:10
合計ジャッジ時間 20,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 851 ms
71,012 KB
testcase_01 AC 851 ms
71,044 KB
testcase_02 AC 841 ms
70,884 KB
testcase_03 AC 843 ms
71,156 KB
testcase_04 AC 909 ms
70,768 KB
testcase_05 AC 879 ms
71,024 KB
testcase_06 AC 859 ms
70,996 KB
testcase_07 AC 875 ms
70,768 KB
testcase_08 AC 873 ms
70,896 KB
testcase_09 AC 872 ms
70,916 KB
testcase_10 AC 279 ms
54,640 KB
testcase_11 AC 424 ms
58,892 KB
testcase_12 AC 405 ms
61,844 KB
testcase_13 AC 549 ms
61,888 KB
testcase_14 AC 534 ms
60,720 KB
testcase_15 AC 270 ms
57,272 KB
testcase_16 AC 165 ms
44,160 KB
testcase_17 AC 698 ms
63,180 KB
testcase_18 AC 556 ms
62,692 KB
testcase_19 AC 242 ms
49,176 KB
testcase_20 AC 731 ms
62,544 KB
testcase_21 AC 344 ms
62,256 KB
testcase_22 AC 434 ms
56,024 KB
testcase_23 AC 206 ms
51,240 KB
testcase_24 AC 741 ms
62,116 KB
testcase_25 AC 285 ms
50,432 KB
testcase_26 AC 645 ms
62,328 KB
testcase_27 AC 217 ms
49,660 KB
testcase_28 AC 736 ms
61,248 KB
testcase_29 AC 395 ms
57,732 KB
testcase_30 AC 26 ms
18,816 KB
testcase_31 AC 27 ms
18,688 KB
testcase_32 AC 28 ms
19,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
        WriteLine(Xor(n, x, y, a, b));
    }
    static long Xor(int n, int x, int y, int[] a, int[] b)
    {
        var res = 0L;
        var mod = 998_244_353;
        for (var i = 0; i < 18; ++i)
        {
            var a1 = 0L;
            var b1 = 0L;
            foreach (var ai in a) a1 += (ai >> i) % 2;
            foreach (var bi in b) b1 += (bi >> i) % 2;
            var x_x = ((long)x * y - a1 * b1) % mod;
            var x_o = a1 * b1 % mod;
            var o_x = x * (y - b1) % mod;
            var o_o = x * b1 % mod;
            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;
            }
            res = (res + (dp[n][1] << i)) % mod;
        }
        return (res);
    }
}
0