結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-08-19 17:47:14
言語 C++11
(gcc 11.4.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 690 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 52,380 KB
最終ジャッジ日時 2024-04-27 02:09:40
合計ジャッジ時間 686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:3: error: ‘vector’ was not declared in this scope
   10 |   vector<bool> dp(33333, false);
      |   ^~~~~~
main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
    2 | #include <algorithm>
  +++ |+#include <vector>
    3 | using namespace std;
main.cpp:10:10: error: expected primary-expression before ‘bool’
   10 |   vector<bool> dp(33333, false);
      |          ^~~~
main.cpp:11:3: error: ‘dp’ was not declared in this scope
   11 |   dp[0] = true;
      |   ^~
main.cpp:12:10: error: expected primary-expression before ‘int’
   12 |   vector<int> a(n);
      |          ^~~
main.cpp:13:40: error: ‘a’ was not declared in this scope
   13 |   for(int i : range(n)) { scanf("%d", &a[i]); }
      |                                        ^
main.cpp:16:22: error: ‘a’ was not declared in this scope
   16 |       if(dp[j]) { dp[a[i] ^ j] = true; }
      |                      ^
main.cpp:9:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |   int n; scanf("%d", &n);
      |          ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

class range {private: struct I{int x;int operator*(){return x;}bool operator!=(I& lhs){return x<lhs.x;}void operator++(){++x;}};I i,n;
public:range(int n):i({0}),n({n}){}range(int i,int n):i({i}),n({n}){}I& begin(){return i;}I& end(){return n;}};

int main(void) {
  int n; scanf("%d", &n);
  vector<bool> dp(33333, false);
  dp[0] = true;
  vector<int> a(n);
  for(int i : range(n)) { scanf("%d", &a[i]); }
  for(int i : range(n)) {
    for(int j : range(33333)) {
      if(dp[j]) { dp[a[i] ^ j] = true; }
    }
  }
  int res = 0;
  for(int i : range(33333)) {
    if(dp[i]) { res++; }
  }
  printf("%d\n", res);
  return 0;
}
0