http://codeforces.com/problemset/problem/469/A I Wanna Be the Guy

이미 해 결 된 문제 수 를 기록 하면 되 며, 중복 되 지 않도록 주의 하 세 요.
#include 
#include 
#include 
#include 
#define MAX 105
#define INF 0x3f3f3f3f
using namespace std;
bool a[MAX];
int main() {
    freopen("a.txt", "r", stdin);
    freopen("b.txt", "w", stdout);
    int n, p, x, c = 0;
    cin >> n;
    cin >> p;
    for (int i = 1; i <= p; ++i) {
        cin >> x;
        if (!a[x]) {
            a[x] = true;
            c++;
        }
    }
    cin >> p;
    for (int i = 1; i <= p; ++i) {
        cin >> x;
        if (!a[x]) {
            a[x] = true;
            c++;
        }
    }
    if (c == n) cout << "I become the guy." << endl;
    else cout << "Oh, my keyboard!" << endl;
    return 0;
}

좋은 웹페이지 즐겨찾기