結果

問題 No.1082 XORのXOR
ユーザー Yusei KatoYusei Kato
提出日時 2020-06-22 20:20:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 110,996 KB
実行使用メモリ 27,864 KB
最終ジャッジ日時 2024-07-03 18:46:53
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,180 KB
testcase_01 AC 26 ms
27,224 KB
testcase_02 AC 25 ms
25,184 KB
testcase_03 AC 34 ms
25,700 KB
testcase_04 AC 33 ms
27,480 KB
testcase_05 AC 33 ms
25,312 KB
testcase_06 AC 34 ms
25,692 KB
testcase_07 AC 35 ms
23,608 KB
testcase_08 AC 35 ms
25,428 KB
testcase_09 AC 33 ms
25,428 KB
testcase_10 AC 33 ms
27,480 KB
testcase_11 AC 35 ms
27,860 KB
testcase_12 AC 33 ms
27,604 KB
testcase_13 AC 34 ms
25,696 KB
testcase_14 AC 35 ms
27,740 KB
testcase_15 AC 34 ms
25,680 KB
testcase_16 AC 33 ms
25,900 KB
testcase_17 AC 33 ms
25,648 KB
testcase_18 AC 33 ms
25,568 KB
testcase_19 AC 33 ms
27,608 KB
testcase_20 AC 34 ms
23,604 KB
testcase_21 AC 34 ms
25,564 KB
testcase_22 AC 35 ms
27,864 KB
testcase_23 AC 34 ms
27,592 KB
testcase_24 AC 33 ms
25,432 KB
testcase_25 AC 36 ms
27,344 KB
testcase_26 AC 35 ms
25,440 KB
testcase_27 AC 33 ms
25,564 KB
testcase_28 AC 25 ms
27,004 KB
testcase_29 AC 26 ms
26,840 KB
testcase_30 AC 25 ms
24,876 KB
testcase_31 AC 25 ms
25,056 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 System.Linq;

namespace Problem1082
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = GetInt();
            var A = GetLongArray();
            long max = 0;

            for(int i = 0; i < N; i++)
            {
                for(int j = i + 1; j < N; j++)
                {
                    max = max < (A[i] ^ A[j]) ? A[i] ^ A[j] : max;
                }
            }

            Console.WriteLine(max);
        }

        public static int GetInt() => int.Parse(Console.ReadLine());
        public static int[] GetIntArray() => Console.ReadLine().Split().Select(int.Parse).ToArray();
        public static double GetDouble() => double.Parse(Console.ReadLine());
        public static double[] GetDoubleArray() => Console.ReadLine().Split().Select(double.Parse).ToArray();
        public static long GetLong() => long.Parse(Console.ReadLine());
        public static long[] GetLongArray() => Console.ReadLine().Split().Select(long.Parse).ToArray();

    }
}
0