結果

問題 No.938 賢人を探せ
ユーザー trineutrontrineutron
提出日時 2019-12-01 00:20:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 2,414 ms
コンパイル使用メモリ 178,464 KB
実行使用メモリ 7,116 KB
最終ジャッジ日時 2024-12-14 11:40:55
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    map<string, bool> a_list;
    vector<string> b_list;
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        string a, b;
        cin >> a >> b;
        a_list[a] = true;
        b_list.push_back(b);
    }
    for (int i = 0; i < n; i++) {
        if (!a_list[b_list.at(i)]) {
            cout << b_list.at(i) << "\n";
            a_list[b_list.at(i)] = true;
        }
    }
}
0