結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | 紙ぺーぱー |
提出日時 | 2015-04-07 01:53:32 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 164 ms / 5,000 ms |
コード長 | 1,935 bytes |
コンパイル時間 | 885 ms |
コンパイル使用メモリ | 108,032 KB |
実行使用メモリ | 36,992 KB |
最終ジャッジ日時 | 2024-07-04 11:08:43 |
合計ジャッジ時間 | 5,337 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
18,688 KB |
testcase_01 | AC | 23 ms
18,688 KB |
testcase_02 | AC | 23 ms
18,560 KB |
testcase_03 | AC | 23 ms
18,560 KB |
testcase_04 | AC | 23 ms
18,816 KB |
testcase_05 | AC | 21 ms
18,816 KB |
testcase_06 | AC | 22 ms
18,432 KB |
testcase_07 | AC | 24 ms
18,560 KB |
testcase_08 | AC | 130 ms
34,304 KB |
testcase_09 | AC | 51 ms
20,864 KB |
testcase_10 | AC | 100 ms
26,752 KB |
testcase_11 | AC | 78 ms
24,832 KB |
testcase_12 | AC | 144 ms
35,328 KB |
testcase_13 | AC | 150 ms
36,096 KB |
testcase_14 | AC | 93 ms
26,496 KB |
testcase_15 | AC | 156 ms
36,864 KB |
testcase_16 | AC | 139 ms
35,456 KB |
testcase_17 | AC | 147 ms
35,584 KB |
testcase_18 | AC | 25 ms
18,816 KB |
testcase_19 | AC | 27 ms
18,688 KB |
testcase_20 | AC | 54 ms
24,064 KB |
testcase_21 | AC | 164 ms
36,864 KB |
testcase_22 | AC | 159 ms
36,992 KB |
testcase_23 | AC | 24 ms
18,560 KB |
testcase_24 | AC | 23 ms
18,688 KB |
testcase_25 | AC | 22 ms
18,688 KB |
testcase_26 | AC | 23 ms
18,688 KB |
testcase_27 | AC | 24 ms
18,560 KB |
testcase_28 | AC | 102 ms
27,904 KB |
testcase_29 | AC | 139 ms
35,712 KB |
testcase_30 | AC | 128 ms
34,560 KB |
testcase_31 | AC | 115 ms
33,152 KB |
testcase_32 | AC | 131 ms
35,072 KB |
testcase_33 | AC | 153 ms
36,736 KB |
testcase_34 | AC | 153 ms
36,480 KB |
testcase_35 | AC | 153 ms
36,864 KB |
testcase_36 | AC | 158 ms
36,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.Collections.Generic; using System.Linq; static public class Program { static public void Main() { var n = readInteger().Validate(x => 1 <= x && x <= 100000); var a = readLong(n).ValidateArray(x => 1 <= x && x <= 1L<<60); n = 32; readEOF(); var b = new List<long>[65]; for (int i = 0; i < 65; i++) b[i] = new List<long>(); foreach (var x in a) { var v = x; for (int i = 0; i < 64 && 0 < v; i++) { if (((v >> i) & 1) == 0) continue; if (b[i].Count > 0) v ^= b[i][0]; else { b[i].Add(v); break; } } } Console.WriteLine(1L << b.Count(x => x.Count > 0)); } static int readInteger() { var s = Console.ReadLine(); return int.Parse(s); } static long[] readLong(int n, params char[] sep) { var s = Console.ReadLine().Split(sep); if (s.Length != n) throw new Exception(string.Format("invalid input, expected{0} actual{1}", n, s.Length)); var ret = new long[n]; for (int i = 0; i < n; i++) ret[i] = long.Parse(s[i]); return ret; } static void readEOF() { if (Console.In.Peek() >= 0) throw new Exception("invalid input too long input file"); } } static public class Ex { static public T Validate<T>(this T input, Func<T, bool> f) { if (!f(input)) throw new Exception("invalid input"); return input; } static public T[] ValidateArray<T>(this T[] input, Func<T, bool> f) { foreach (var x in input) if (!f(x)) throw new Exception("invalid input"); return input; } }