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