-
Notifications
You must be signed in to change notification settings - Fork 0
/
10801.cpp
50 lines (45 loc) · 920 Bytes
/
10801.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <algorithm>
#include <cmath>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <queue>
#include <set>
#include <tuple>
#include <utility>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
typedef tuple<int, int, int> t3;
typedef long long ll;
typedef double db;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
const int INF = 0x3f3f3f3f;
const ll LL_INF = 0x3f3f3f3f3f3f3f3f;
const db PI = acos(-1);
const db ERR = 1e-10;
int main() {
ios::sync_with_stdio(false);
cout.tie(NULL);
cin.tie(NULL);
int a[10];
int b[10];
int A = 0, B = 0;
for (int k = 0; k < 10; k++) {
cin >> a[k];
}
for (int k = 0; k < 10; k++) {
cin >> b[k];
}
for (int k = 0; k < 10; k++) {
if (a[k] > b[k]) A++;
else if (b[k] > a[k]) B++;
}
if (A > B) cout << "A";
else if (A < B) cout << "B";
else cout << "D";
}