結果

問題 No.938 賢人を探せ
ユーザー ei13337ei13337
提出日時 2019-12-01 00:02:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 92,268 KB
実行使用メモリ 7,148 KB
最終ジャッジ日時 2024-05-08 08:51:12
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
7,140 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 15 ms
5,480 KB
testcase_09 AC 16 ms
5,480 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 22 ms
5,480 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 20 ms
5,376 KB
testcase_19 AC 19 ms
5,376 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 51 ms
7,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <stack>
#include <queue>
#include <algorithm>
#include <set>
#include <map>
#include <iomanip>
#define FOR(i, n, m) for(ll i = n; i < (int)m; i++)
#define REP(i, n) FOR(i, 0, n)
using namespace std;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    set<string> a;
    vector<string> b;
    for(int i = 0; i < n; i++) {
        string s1, s2;
        cin >> s1 >> s2;
        a.insert(s1);
        b.push_back(s2);
    }
    for(int i = 0; i < (int)b.size(); i++) {
        if(!a.count(b[i])) {
            a.insert(b[i]);
            cout << b[i] << endl;
        }
    }
    return 0;
}
0