結果

問題 No.2442 線形写像
ユーザー kakel-sankakel-san
提出日時 2023-08-25 21:51:56
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 23,296 KB
最終ジャッジ日時 2024-06-07 07:33:48
合計ジャッジ時間 2,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,816 KB
testcase_01 AC 28 ms
18,560 KB
testcase_02 AC 28 ms
18,688 KB
testcase_03 AC 28 ms
18,688 KB
testcase_04 AC 29 ms
18,944 KB
testcase_05 AC 29 ms
18,816 KB
testcase_06 AC 28 ms
18,688 KB
testcase_07 AC 28 ms
18,944 KB
testcase_08 AC 29 ms
18,688 KB
testcase_09 AC 28 ms
18,688 KB
testcase_10 AC 28 ms
18,816 KB
testcase_11 AC 30 ms
18,944 KB
testcase_12 AC 29 ms
18,944 KB
testcase_13 AC 29 ms
18,944 KB
testcase_14 AC 29 ms
18,816 KB
testcase_15 AC 61 ms
21,804 KB
testcase_16 AC 60 ms
21,408 KB
testcase_17 AC 96 ms
23,168 KB
testcase_18 AC 106 ms
23,296 KB
testcase_19 AC 106 ms
23,168 KB
testcase_20 AC 106 ms
23,040 KB
testcase_21 AC 98 ms
23,168 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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static ulong[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ulong.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var m = 1 << n;
        var a = LList(m);
        var blist = new ulong[n];
        for (var i = 0; i < n; ++i) blist[i] = a[1 << i];
        for (var i = 0; i < m; ++i)
        {
            var sub = (ulong)0;
            for (var j = 0; j < n; ++j) if ((i & (1 << j)) != 0) sub ^= blist[j];
            if (sub != a[i])
            {
                WriteLine("No");
                return;
            }
        }
        WriteLine("Yes");
    }
}
0