結果
問題 | No.130 XOR Minimax |
ユーザー | NetSeed |
提出日時 | 2016-02-06 20:45:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 791 bytes |
コンパイル時間 | 1,000 ms |
コンパイル使用メモリ | 106,496 KB |
実行使用メモリ | 44,032 KB |
最終ジャッジ日時 | 2024-09-21 20:54:28 |
合計ジャッジ時間 | 4,989 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 33 ms
19,072 KB |
testcase_02 | AC | 32 ms
19,072 KB |
testcase_03 | AC | 32 ms
19,200 KB |
testcase_04 | AC | 194 ms
36,864 KB |
testcase_05 | AC | 227 ms
40,448 KB |
testcase_06 | AC | 207 ms
42,496 KB |
testcase_07 | WA | - |
testcase_08 | AC | 224 ms
44,032 KB |
testcase_09 | AC | 62 ms
21,760 KB |
testcase_10 | AC | 75 ms
23,424 KB |
testcase_11 | WA | - |
testcase_12 | AC | 48 ms
21,092 KB |
testcase_13 | AC | 145 ms
32,512 KB |
testcase_14 | AC | 181 ms
38,016 KB |
testcase_15 | AC | 39 ms
19,712 KB |
testcase_16 | AC | 138 ms
32,000 KB |
testcase_17 | AC | 141 ms
32,768 KB |
testcase_18 | AC | 151 ms
33,408 KB |
testcase_19 | AC | 173 ms
36,608 KB |
testcase_20 | AC | 102 ms
27,392 KB |
testcase_21 | AC | 183 ms
37,632 KB |
testcase_22 | WA | - |
testcase_23 | AC | 46 ms
20,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.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) { 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()); } } }