結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | Lepton_s |
提出日時 | 2015-04-16 23:44:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 948 bytes |
コンパイル時間 | 656 ms |
コンパイル使用メモリ | 85,768 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 01:43:03 |
合計ジャッジ時間 | 1,377 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:34:45: warning: format ‘%ld’ expects argument of type ‘long int*’, but argument 2 has type ‘ll*’ {aka ‘long long int*’} [-Wformat=] 34 | for(int i = 0; i < n; i++) scanf("%ld", d+i); | ~~^ ~~~ | | | | | ll* {aka long long int*} | long int* | %lld main.cpp:33:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 33 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:34:41: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | for(int i = 0; i < n; i++) scanf("%ld", d+i); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <iostream> #include <sstream> #include <functional> #include <map> #include <string> #include <cstring> #include <vector> #include <queue> #include <stack> #include <deque> #include <set> #include <list> #include <numeric> using namespace std; const double PI = 3.14159265358979323846; const double EPS = 1e-12; const int INF = 1<<25; typedef pair<int,int> P; typedef long long ll; typedef unsigned long long ull; #define N 100000 ll d[N]; int main(){ int n; scanf("%d", &n); for(int i = 0; i < n; i++) scanf("%ld", d+i); int cnt = 0; for(int i = 0; i < 60; i++){ sort(d+cnt, d+n); ll b = 1LL<<i; int k; for(k = cnt; k < n; k++) if(d[k]&b) break; if(!(d[k]&b)) continue; swap(d[cnt], d[k]); k = cnt++; for(int j = cnt; j < n; j++){ if(d[j]&b) d[j] ^= d[k]; } } cout<<(1LL<<cnt)<<endl; return 0; }