結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | 14番 |
提出日時 | 2016-07-17 14:14:17 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,653 bytes |
コンパイル時間 | 1,411 ms |
コンパイル使用メモリ | 107,904 KB |
実行使用メモリ | 100,352 KB |
最終ジャッジ日時 | 2024-10-15 15:21:38 |
合計ジャッジ時間 | 8,567 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
18,944 KB |
testcase_01 | AC | 25 ms
19,052 KB |
testcase_02 | AC | 27 ms
19,136 KB |
testcase_03 | AC | 26 ms
19,264 KB |
testcase_04 | AC | 25 ms
19,072 KB |
testcase_05 | AC | 27 ms
19,328 KB |
testcase_06 | AC | 25 ms
19,184 KB |
testcase_07 | RE | - |
testcase_08 | AC | 909 ms
91,392 KB |
testcase_09 | AC | 645 ms
68,608 KB |
testcase_10 | AC | 764 ms
78,720 KB |
testcase_11 | AC | 977 ms
97,408 KB |
testcase_12 | AC | 29 ms
20,224 KB |
testcase_13 | AC | 26 ms
19,072 KB |
testcase_14 | AC | 50 ms
39,168 KB |
testcase_15 | AC | 1,013 ms
100,352 KB |
testcase_16 | AC | 26 ms
19,000 KB |
testcase_17 | AC | 250 ms
37,632 KB |
testcase_18 | RE | - |
testcase_19 | AC | 135 ms
27,776 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.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int switchCount = int.Parse(Reader.ReadLine()); this.SwitchList = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray(); this.Dic = new bool[SwitchList.Length, (1<<14)]; this.GetAns(0, 0); Console.WriteLine(this.ans.Count); } private bool[,] Dic; private Dictionary<int, bool> ans = new Dictionary<int, bool>(); private void GetAns(int idx, int num) { if(idx == this.SwitchList.Length) { if(!ans.ContainsKey(num)) { ans.Add(num, true); } return; } if(this.Dic[idx, num]) { return; } this.GetAns(idx + 1, num); this.GetAns(idx + 1, num ^ SwitchList[idx]); this.Dic[idx, num] = true; } private int[] SwitchList; public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 6 1 1 4 5 1 4 "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }