結果

問題 No.1674 Introduction to XOR
ユーザー bluemeganebluemegane
提出日時 2021-09-10 22:41:19
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 816 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 113,148 KB
実行使用メモリ 26,268 KB
最終ジャッジ日時 2024-06-12 02:00:16
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,040 KB
testcase_01 AC 23 ms
23,788 KB
testcase_02 AC 23 ms
24,104 KB
testcase_03 AC 22 ms
23,988 KB
testcase_04 AC 22 ms
23,912 KB
testcase_05 AC 23 ms
23,656 KB
testcase_06 AC 23 ms
24,168 KB
testcase_07 AC 24 ms
26,016 KB
testcase_08 AC 23 ms
25,764 KB
testcase_09 AC 22 ms
25,828 KB
testcase_10 AC 22 ms
23,852 KB
testcase_11 AC 22 ms
21,940 KB
testcase_12 AC 23 ms
26,020 KB
testcase_13 AC 21 ms
24,036 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 23 ms
23,816 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        getAns(n, a);
    }
    static void getAns(int n, long[] a)
    {
        long x;
        if (n == 1) x = a[0];
        else
        {
            x = a[0] | a[1];
            for (int i = 2; i < n; i++) x |= a[i];
        }
        var onf = new bool[60];
        for (int i = 0; i < 60; i++)
        {
            if (((x >> i) & 1) == 1) onf[i] = true;
        }
        var ans = -1L;
        for (int i = 0; i < 60; i++)
        {
            if (!onf[i]) { ans = 1L << i; break; }
        }
        if (ans == -1) ans = 1 << 60;
        Console.WriteLine(ans);
    }
}
0