結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | k3079k |
提出日時 | 2019-09-15 14:52:04 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 4,605 ms |
コンパイル使用メモリ | 103,424 KB |
実行使用メモリ | 178,184 KB |
最終ジャッジ日時 | 2024-07-06 22:45:32 |
合計ジャッジ時間 | 18,084 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
17,660 KB |
testcase_01 | AC | 27 ms
17,848 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 30 ms
17,716 KB |
testcase_13 | AC | 24 ms
17,664 KB |
testcase_14 | AC | 1,877 ms
177,664 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
コンパイルメッセージ
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; namespace Test01 { class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); string[] input = Console.ReadLine().Split(' '); int[] a = new int[N + 1]; for (int i = 1; i <= N; i++) a[i] = int.Parse(input[i - 1]); int max = 32767; bool[,] dp = new bool[N + 1, max + 1]; dp[0, 0] = true; for(int i = 1; i <= N; i++) { for(int j = max; j >= 0; j--) { dp[i, j] = dp[i - 1, j]; if ((j ^ a[i]) <= max) dp[i, (j ^ a[i])] |= dp[i, j]; } } int cnt = 0; for(int i = 0; i <= max; i++) { if (dp[N, i]) cnt++; } Console.WriteLine(cnt); } } }