結果

問題 No.938 賢人を探せ
ユーザー algon_320
提出日時 2019-12-01 00:22:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 176,584 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-21 03:46:47
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 10 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<string> names;
    set<string> cheat;
    for (int i = 0; i < N; i++) {
        string s, t;
        cin >> s >> t;
        cheat.insert(s);
        names.push_back(s);
        names.push_back(t);
    }
    for (auto &x : names) {
        if (!cheat.count(x)) {
            cout << x << endl;
        }
    }
}
0