結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | kakira9618 |
提出日時 | 2015-04-17 01:57:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,598 bytes |
コンパイル時間 | 907 ms |
コンパイル使用メモリ | 95,740 KB |
実行使用メモリ | 60,160 KB |
最終ジャッジ日時 | 2024-07-04 11:18:35 |
合計ジャッジ時間 | 9,091 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 265 ms
43,392 KB |
testcase_09 | AC | 48 ms
11,648 KB |
testcase_10 | AC | 199 ms
33,920 KB |
testcase_11 | AC | 142 ms
25,216 KB |
testcase_12 | AC | 312 ms
50,048 KB |
testcase_13 | AC | 337 ms
53,888 KB |
testcase_14 | AC | 189 ms
32,128 KB |
testcase_15 | AC | 365 ms
58,240 KB |
testcase_16 | AC | 306 ms
49,024 KB |
testcase_17 | AC | 328 ms
52,608 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 271 ms
54,272 KB |
testcase_21 | AC | 386 ms
60,160 KB |
testcase_22 | AC | 380 ms
60,032 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 225 ms
37,504 KB |
testcase_29 | AC | 323 ms
51,456 KB |
testcase_30 | AC | 282 ms
45,824 KB |
testcase_31 | AC | 245 ms
40,064 KB |
testcase_32 | AC | 303 ms
49,024 KB |
testcase_33 | AC | 374 ms
58,496 KB |
testcase_34 | AC | 368 ms
57,856 KB |
testcase_35 | AC | 382 ms
59,648 KB |
testcase_36 | AC | 513 ms
59,392 KB |
ソースコード
#include <map> #include <set> #include <list> #include <cmath> #include <queue> #include <stack> #include <cstdio> #include <string> #include <vector> #include <complex> #include <cstdlib> #include <cstring> #include <numeric> #include <sstream> #include <iostream> #include <algorithm> #include <functional> #define mp make_pair #define pb push_back #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<bool> vb; typedef vector<int> vi; typedef vector<vb> vvb; typedef vector<vi> vvi; typedef pair<int,int> pii; const int INF=1<<29; const double EPS=1e-9; const int dx[]={1,0,-1,0},dy[]={0,-1,0,1}; int main(int argc, char const *argv[]) { int N; cin >> N; std::vector<vector<long long int> > m(N, vector<long long int>(61, 0LL)); for (int i = 0; i < N; ++i) { long long int temp; cin >> temp; for (int j = 0; j < 61; ++j) { m[i][j] = ((long long int)temp >> j & 1); } } set<string> se; for (int j = 0; j < 61; ++j) { string target = ""; for (int i = 0; i < N; ++i) { string s; if (m[i][j] == 0) { s = "0"; } else { s = "1"; } target += s; } //cout << target << endl; se.insert(target); } long long int ans = 1LL << (se.size() - 1); cout << ans << endl; return 0; }