結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | bluemegane |
提出日時 | 2021-05-17 18:50:33 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 106,112 KB |
実行使用メモリ | 37,376 KB |
最終ジャッジ日時 | 2024-10-06 21:50:39 |
合計ジャッジ時間 | 5,546 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
18,944 KB |
testcase_01 | AC | 25 ms
18,816 KB |
testcase_02 | RE | - |
testcase_03 | AC | 31 ms
18,892 KB |
testcase_04 | AC | 34 ms
18,764 KB |
testcase_05 | AC | 35 ms
19,020 KB |
testcase_06 | AC | 26 ms
18,944 KB |
testcase_07 | AC | 38 ms
18,768 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 24 ms
19,072 KB |
testcase_20 | AC | 50 ms
23,936 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Linq; using System; public class Hello { static void Main() { var n = int.Parse(Console.ReadLine().Trim()); string[] line = Console.ReadLine().Trim().Split(' '); var a = Array.ConvertAll(line, int.Parse); a = a.Distinct().ToArray(); getAns(n, a); } static void getAns (int n, int [] a) { var imax = a.Max() * 2; var b = new bool[imax + 1]; b[0] = true; foreach (var x in a) { for (int i = imax ; i >= 0; i--) { if (b[i]) b[i ^ x] = true; } } var count = b.Count(x => x == true); Console.WriteLine(count); } }