結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | 抹茶アイス |
提出日時 | 2023-07-27 15:33:39 |
言語 | C# (.NET 8.0.203) |
結果 |
TLE
|
実行時間 | - |
コード長 | 913 bytes |
コンパイル時間 | 7,716 ms |
コンパイル使用メモリ | 167,596 KB |
実行使用メモリ | 34,048 KB |
最終ジャッジ日時 | 2024-10-04 12:14:05 |
合計ジャッジ時間 | 14,732 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
34,048 KB |
testcase_01 | AC | 56 ms
30,576 KB |
testcase_02 | AC | 67 ms
32,768 KB |
testcase_03 | AC | 64 ms
32,256 KB |
testcase_04 | AC | 54 ms
30,336 KB |
testcase_05 | AC | 68 ms
33,920 KB |
testcase_06 | AC | 53 ms
30,592 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (90 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace yukicoder { public class Program { public static void Main() { var n = int.Parse(Console.ReadLine()); var a = Console.ReadLine().Trim().Split(' ').Select(value => int.Parse(value)).Distinct().ToArray(); var s = new List<int>(); var k = (int)Math.Pow(2, a.Length)-1; while (k >= 0) { var m = 0; var j = Convert.ToString(k, 2); while (j.Length < a.Length) { j = "0" + j; } for(var i = 0; i < j.Length; i++) { if (j[i] == '1') { m ^= a[i]; } } k--; s.Add(m); } Console.WriteLine(s.Distinct().Count()); } } }