結果
| 問題 |
No.938 賢人を探せ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-12-02 23:49:09 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 2,000 ms |
| コード長 | 531 bytes |
| コンパイル時間 | 1,902 ms |
| コンパイル使用メモリ | 175,104 KB |
| 実行使用メモリ | 7,040 KB |
| 最終ジャッジ日時 | 2024-12-14 11:46:46 |
| 合計ジャッジ時間 | 3,055 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n;
cin >> n;
vector<string> b(n);
set<string> ban;
for (int i = 0; i < n; i++) {
string a;
cin >> a >> b[i];
ban.insert(a);
}
set<string> used;
for (int i = 0; i < n; i++) {
if (used.count(b[i])) continue;
used.insert(b[i]);
if (ban.count(b[i])) continue;
cout << b[i] << "\n";
}
return 0;
}