結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | matsu7874 |
提出日時 | 2015-12-27 21:10:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 1,258 ms |
コンパイル使用メモリ | 159,060 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 07:31:11 |
合計ジャッジ時間 | 1,916 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 22 ms
6,944 KB |
testcase_09 | AC | 12 ms
6,940 KB |
testcase_10 | AC | 16 ms
6,940 KB |
testcase_11 | AC | 26 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 28 ms
6,940 KB |
testcase_15 | AC | 28 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:15:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d", &A[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
// g++ -std=c++0x -O2 #include <bits/stdc++.h> using namespace std; #define MAX_V 32768 int main() { int N; int A[5000]; int i, j; bool dp[MAX_V]; scanf("%d", &N); for (i = 0; i < N; ++i) { scanf("%d", &A[i]); } for (i = 1; i < MAX_V; ++i) { dp[i] = false; } dp[0] = true; for (i = 0; i < N; ++i) { for (j = 0; j < N; ++j) { if (dp[j]) { dp[j ^ A[i]] = true; } } } int cnt = 0; for (i = 0; i < MAX_V; ++i) { if (dp[i]) { cnt += 1; } } printf("%d\n", cnt); return 0; }