結果
問題 | No.184 たのしい排他的論理和(HARD) |
ユーザー | albicilla |
提出日時 | 2015-07-16 12:31:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,312 bytes |
コンパイル時間 | 1,680 ms |
コンパイル使用メモリ | 159,740 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 12:00:16 |
合計ジャッジ時間 | 10,128 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2,458 ms
5,376 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:45:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 45 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef long double ld; #define fr first #define sc second #define mp make_pair #define pb push_back #define rep(i,x) for(int i=0;i<x;i++) #define rep1(i,x) for(int i=1;i<=x;i++) #define rrep(i,x) for(int i=x-1;i>=0;i--) #define rrep1(i,x) for(int i=x;i>0;i--) #define sor(v) sort(v.begin(),v.end()) #define rev(s) reverse(s.begin(),s.end()) #define lb(vec,a) lower_bound(vec.begin(),vec.end()) #define ub(vec,a) upper_bound(vec.begin(),vec.end()) #define uniq(vec) vec.erace(unique(vec.begin(),vec.end(),vec.end)) #define mp1(a,b,c) P1(a,P(b,c)) #define all(x) (x).begin(),(x).end() #define MAX (1<<15) #define NIL -1 //yukicoder No.183 たのしい排他的論理和(Easy) /*方針 iという数が作れるかで bool型でdp[i]とる。 作ることのできる整数をboolにメモ ケースごとに排他的論理和を調べていく 最後に 何ケースできたか出力。 */ bool dp[MAX],res[MAX]; int main(){ dp[0] = 1; int n; scanf("%d", &n); vector<int> a(n); for(int i=0;i<n;i++){ cin>>a[i]; } for (int i = 0; i < n; i++){ for (int j = 0; j < MAX; j++){ if(dp[j]){dp[j^a[i]]=1;} } } int ans = 0; for (int i = 0; i < MAX; i++){ if (dp[i])ans++; } printf("%d", ans); return 0; }