結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー komori3komori3
提出日時 2017-09-28 03:06:25
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,218 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-27 14:58:02
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:75:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘clock_t’ {aka ‘long int’} [-Wformat=]
   75 |         printf("%d msec.\n", end - start);
      |                 ~^           ~~~~~~~~~~~
      |                  |               |
      |                  int             clock_t {aka long int}
      |                 %ld

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
#include <functional>
#include <set>
#include <numeric>
#include <stack>
#include <utility>
#include <time.h>
//#include "util.h"

using namespace std;
typedef unsigned uint;
typedef long long ll;
typedef unsigned long long ull;



//呪文
template <typename _KTy, typename _Ty> ostream& operator << (ostream& ostr, const pair<_KTy, _Ty>& m) { cout << "{" << m.first << ", " << m.second << "}"; return ostr; }
template <typename _KTy, typename _Ty> ostream& operator << (ostream& ostr, const map<_KTy, _Ty>& m) { if (m.empty()) { cout << "{ }"; return ostr;	} cout << "{" << *m.begin(); for (auto itr = ++m.begin(); itr != m.end(); itr++) { cout << ", " << *itr; } cout << "}"; return ostr; }
template <typename _Ty> ostream& operator << (ostream& ostr, const vector<_Ty>& v) { if (v.empty()) { cout << "{ }"; return ostr; }	cout << "{" << v.front(); for (auto itr = ++v.begin(); itr != v.end(); itr++) { cout << ", " << *itr; }	cout << "}"; return ostr; }
template <typename _Ty> ostream& operator << (ostream& ostr, const set<_Ty>& s) { if (s.empty()) { cout << "{ }"; return ostr; } cout << "{" << *(s.begin()); for (auto itr = ++s.begin(); itr != s.end(); itr++) { cout << ", " << *itr; }	cout << "}"; return ostr; }
#define PI 3.14159265358979323846
#define EPS 1e-6
#define MIN(a,b) ((a)<(b)?(a):(b))
#define MAX(a,b) ((a)>(b)?(a):(b))
#define all(x) (x).begin(), (x).end()


int yuki0183()
{
	// A_i は 2^14 = 100000000000000 までとりうるので XOR の結果は最大 2^15 - 1 = 111111111111111 までありうる
	const int MAX = 1 << 15;

	// dp[i] が true なら i をつくることができる
	bool dp[MAX] = { 0 };
	
	// 0 は初期状態
	dp[0] = true;

	int N;
	cin >> N;

	int tmp;

	for (int i = 0; i < N; i++) {
		cin >> tmp;
		for (int j = 0; j < MAX; j++)
			if (dp[j]) dp[tmp ^ j] = true;
	}

	int cnt = 0;
	for (int i = 0; i < MAX; i++)
		if (dp[i]) cnt++;

	cout << cnt << endl;

	return 0;
}

int main()
{
	clock_t start, end;
	start = clock();

	yuki0183();

	end = clock();
	printf("%d msec.\n", end - start);

	return 0;
}
0