結果
問題 | No.582 キャンディー・ボックス3 |
ユーザー | dolyplpl |
提出日時 | 2017-10-27 22:39:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,402 bytes |
コンパイル時間 | 1,001 ms |
コンパイル使用メモリ | 86,348 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-21 21:53:01 |
合計ジャッジ時間 | 1,802 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,824 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
ソースコード
#include<algorithm> #include<iostream> #include<cstdlib> #include<cstring> #include<climits> #include<iomanip> #include<complex> #include<cstdio> #include<vector> #include<queue> #include<stack> #include<cmath> #include<list> #include<map> #include<set> using namespace std; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<string> VS; typedef stack<int> SI; typedef queue<int> QI; typedef list<int> LI; typedef pair<int,int> PII; typedef long long LL; #define d(x) cout<<#x<<" = "<<(x)<<endl; #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define MP make_pair #define EMP empty() #define SZ(a) int((a).size()) #define EACH(i,c) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); ++i) #define REACH(i,c) for(typeof((c).rbegin()) i=(c).rbegin(); i!=(c).rend(); ++i) #define EXIST(s,e) ((s).find(e)!=(s).end()) #define SORT(c,n) sort(c,c+n) #define VSORT(c) sort((c).begin(),(c).end()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define DFOR(i,b,a) for(int i=(b)-1;i>=(a);--i) #define DREP(i,n) DFOR(i,n,0) #define INF 1000000000 #define PI acos(-1.0) //////////////////////////////////////////////// int main() { int n,s;bool c[155]; cin>>n; REP(i,n) { cin>>s; if(s%2==1)c[i]=true; else c[i]=false; } s=0; REP(i,n)s+=c[i]; if(s==n-1)cout<<"A"<<endl; else cout<<"B"<<endl; return 0; }