結果
問題 | No.130 XOR Minimax |
ユーザー | NetSeed |
提出日時 | 2016-02-06 20:38:07 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 979 ms |
コンパイル使用メモリ | 110,496 KB |
実行使用メモリ | 54,408 KB |
最終ジャッジ日時 | 2024-09-21 20:54:13 |
合計ジャッジ時間 | 5,119 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 33 ms
25,276 KB |
testcase_02 | AC | 33 ms
25,404 KB |
testcase_03 | AC | 33 ms
25,068 KB |
testcase_04 | AC | 191 ms
42,588 KB |
testcase_05 | AC | 230 ms
48,752 KB |
testcase_06 | AC | 211 ms
51,428 KB |
testcase_07 | WA | - |
testcase_08 | AC | 224 ms
52,320 KB |
testcase_09 | AC | 61 ms
27,632 KB |
testcase_10 | AC | 75 ms
28,980 KB |
testcase_11 | WA | - |
testcase_12 | AC | 49 ms
26,548 KB |
testcase_13 | AC | 148 ms
40,608 KB |
testcase_14 | AC | 183 ms
42,656 KB |
testcase_15 | AC | 38 ms
23,348 KB |
testcase_16 | AC | 137 ms
37,620 KB |
testcase_17 | AC | 143 ms
40,396 KB |
testcase_18 | AC | 153 ms
39,236 KB |
testcase_19 | AC | 175 ms
41,756 KB |
testcase_20 | AC | 102 ms
32,052 KB |
testcase_21 | AC | 183 ms
42,500 KB |
testcase_22 | WA | - |
testcase_23 | AC | 45 ms
26,736 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { 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) { var currentMax = current.Max(); candidate = current.Select(x => x ^ m).ToArray(); var candidateMax = candidate.Max(); //current = currentMax > candidateMax ? candidate : current; if (currentMax > candidateMax) { current = candidate; } } Console.WriteLine(current.Max()); } } }