結果

問題 No.938 賢人を探せ
ユーザー algon_320
提出日時 2019-12-01 00:30:46
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 177,652 KB
実行使用メモリ 7,760 KB
最終ジャッジ日時 2024-12-14 11:41:09
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

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;
            cheat.insert(x);
        }
    }
}
0