結果

問題 No.130 XOR Minimax
ユーザー NetSeedNetSeed
提出日時 2016-02-06 21:30:51
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 797 bytes
コンパイル時間 1,133 ms
コンパイル使用メモリ 111,840 KB
実行使用メモリ 52,524 KB
最終ジャッジ日時 2024-09-21 20:55:08
合計ジャッジ時間 5,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
27,096 KB
testcase_02 AC 35 ms
25,300 KB
testcase_03 AC 36 ms
25,200 KB
testcase_04 AC 205 ms
42,740 KB
testcase_05 AC 240 ms
48,764 KB
testcase_06 AC 222 ms
49,272 KB
testcase_07 WA -
testcase_08 AC 236 ms
50,444 KB
testcase_09 AC 65 ms
27,440 KB
testcase_10 AC 80 ms
28,892 KB
testcase_11 AC 186 ms
43,628 KB
testcase_12 WA -
testcase_13 AC 158 ms
38,488 KB
testcase_14 AC 193 ms
42,788 KB
testcase_15 AC 40 ms
27,952 KB
testcase_16 AC 147 ms
37,604 KB
testcase_17 AC 150 ms
40,284 KB
testcase_18 WA -
testcase_19 AC 186 ms
44,316 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 71 ms
28,052 KB
testcase_23 AC 48 ms
28,768 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.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;


namespace ConsoleApplication2
{
	class Program
	{
		static void Main(string[] args)
		{
#if LOCAL
			Console.SetIn(new StreamReader("test04.txt"));
#endif
			var mask = Enumerable.Range(0, 32).Select(x => (uint)1 << x).Reverse().ToArray();
			Console.ReadLine();

			var current = Console.ReadLine().Split().Select(x => uint.Parse(x)).ToArray();
			uint[] candidate = new uint[0];



			foreach (var m in mask.Reverse())
			{


				var currentMax = current.Max();

				candidate = current.Select(x => x ^ m).ToArray();
				var candidateMax = candidate.Max();

				if (currentMax > candidateMax)
				{
					current = candidate;
				}
			}

			Console.WriteLine(current.Max());
		}
	}
}
0