結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー |
|
提出日時 | 2015-09-23 11:13:49 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 221 ms / 5,000 ms |
コード長 | 694 bytes |
コンパイル時間 | 1,438 ms |
コンパイル使用メモリ | 66,320 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 03:32:50 |
合計ジャッジ時間 | 3,840 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <algorithm> #include <sstream> #include <map> #include <set> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; typedef unsigned long long ull; typedef long double lb; /* ここからが本編 */ int main(void) { int i,j,k; int n; int a[5000]; bool dp[33000] = {0}; cin >> n; rep(i,n) cin >> a[i]; dp[ a[0] ] = true; REP(i,0,n) { for(j=0;j<33000;j++) { if( dp[j] ) dp[j ^ a[i] ] = true; } } int cnt = 0; for(j=0;j<33000;j++) { if( dp[j] ) cnt++; } cout << cnt << endl; return 0; }