mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:18:48 +00:00
20 lines
364 B
C++
20 lines
364 B
C++
// R38780150
|
|
|
|
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int n, x, s, tmp;
|
|
cin >> n;
|
|
for (int i = 0; i < n; i++) {
|
|
cin >> tmp >> x >> s;
|
|
if (x + s > 140 && x * 0.7 + s * 0.3 >= 80) {
|
|
cout << "Excellent" << endl;
|
|
} else {
|
|
cout << "Not excellent" << endl;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|