結果

問題 No.2061 XOR Sort
ユーザー kakel-sankakel-san
提出日時 2023-10-09 14:24:27
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 787 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 108,588 KB
実行使用メモリ 47,656 KB
最終ジャッジ日時 2024-07-26 18:32:29
合計ジャッジ時間 5,618 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,052 KB
testcase_01 AC 26 ms
27,136 KB
testcase_02 AC 25 ms
25,388 KB
testcase_03 AC 26 ms
27,228 KB
testcase_04 AC 25 ms
25,176 KB
testcase_05 AC 26 ms
27,012 KB
testcase_06 AC 25 ms
23,344 KB
testcase_07 AC 26 ms
24,880 KB
testcase_08 AC 26 ms
25,108 KB
testcase_09 AC 26 ms
27,220 KB
testcase_10 AC 26 ms
25,228 KB
testcase_11 AC 26 ms
25,440 KB
testcase_12 AC 25 ms
25,308 KB
testcase_13 AC 26 ms
23,096 KB
testcase_14 AC 87 ms
34,792 KB
testcase_15 AC 86 ms
32,764 KB
testcase_16 AC 152 ms
47,284 KB
testcase_17 AC 108 ms
40,684 KB
testcase_18 AC 109 ms
40,796 KB
testcase_19 AC 109 ms
42,732 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 87 ms
32,620 KB
testcase_23 WA -
testcase_24 AC 153 ms
47,532 KB
testcase_25 AC 155 ms
45,496 KB
testcase_26 AC 153 ms
45,360 KB
testcase_27 AC 153 ms
47,656 KB
testcase_28 AC 154 ms
47,404 KB
testcase_29 AC 59 ms
29,800 KB
testcase_30 AC 26 ms
25,056 KB
testcase_31 AC 33 ms
25,948 KB
testcase_32 AC 25 ms
27,144 KB
testcase_33 AC 26 ms
25,188 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var ans = 1L;
        var mod = 998_244_353;
        for (var i = 0; i < 30; ++i)
        {
            var zero = 0;
            var one = 0;
            foreach (var ai in a)
            {
                if (((ai >> i) & 1) == 0) ++zero;
                else ++one;
            }
            if (zero > 0 && one > 0) ans = ans * 2 % mod;
        }
        WriteLine(ans);
    }
}
0