結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー BantakoBantako
提出日時 2017-08-09 10:29:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 1,532 ms
コンパイル使用メモリ 167,700 KB
実行使用メモリ 138,112 KB
最終ジャッジ日時 2024-06-30 02:01:52
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 210 ms
138,112 KB
testcase_08 AC 182 ms
93,996 KB
testcase_09 AC 117 ms
66,752 KB
testcase_10 AC 145 ms
79,000 KB
testcase_11 AC 200 ms
102,296 KB
testcase_12 AC 2 ms
6,948 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 167 ms
28,856 KB
testcase_15 AC 206 ms
103,552 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 44 ms
27,044 KB
testcase_18 AC 192 ms
115,968 KB
testcase_19 AC 23 ms
15,728 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int INF = 1e9;
int MOD = 1e9+7;
bool dp[5001][32769];
main(){
    int N,A[5000];
    cin >> 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 <= 16384*2;j++){
            if(dp[i][j]){
                dp[i+1][j^A[i]] = 1;
                dp[i+1][j] = 1;
            }
        }
    }
    int cnt = 0;
    for(int i = 0;i <= 16384*2;i++)cnt += dp[N][i];
    cout << cnt << endl;
}
0