結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | d2verb |
提出日時 | 2017-10-03 00:21:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 528 bytes |
コンパイル時間 | 500 ms |
コンパイル使用メモリ | 61,384 KB |
実行使用メモリ | 754,748 KB |
最終ジャッジ日時 | 2024-11-15 22:44:06 |
合計ジャッジ時間 | 7,073 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,824 KB |
testcase_04 | AC | 2 ms
6,824 KB |
testcase_05 | AC | 3 ms
7,796 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | AC | 366 ms
457,868 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 5 ms
8,024 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | AC | 5 ms
6,820 KB |
testcase_17 | AC | 116 ms
241,348 KB |
testcase_18 | MLE | - |
testcase_19 | AC | 52 ms
142,800 KB |
ソースコード
#include <iostream> #include <vector> #include <cstring> using namespace std; int dp[5001][1<<16]; int main(void) { int N; vector<int> A; cin >> N; A.resize(N); for (int i = 0; i < N; i++) cin >> A[i]; dp[0][0] = 1; for (int i = 0; i < N; i++) { for (int j = 0; j <= (1 << 15); j++) { dp[i+1][j] = dp[i][j] || dp[i][j^A[i]]; } } int ans = 0; for (int i = 0; i <= (1 << 15); i++) { ans += dp[N][i]; } cout << ans << endl; return 0; }