結果
| 問題 |
No.938 賢人を探せ
|
| コンテスト | |
| ユーザー |
QCFium
|
| 提出日時 | 2019-12-01 09:21:39 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 52 ms / 2,000 ms |
| コード長 | 432 bytes |
| コンパイル時間 | 1,774 ms |
| コンパイル使用メモリ | 176,460 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 11:42:54 |
| 合計ジャッジ時間 | 3,084 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
int main() {
int n;
scanf("%d", &n);
std::pair<std::string, std::string> a[n];
std::set<std::string> pos;
for (auto &i : a) {
std::cin >> i.first >> i.second;
pos.insert(i.second);
}
for (auto &i : a) pos.erase(i.first);
for (auto &i : a) {
if (pos.count(i.second)) std::cout << i.second << std::endl, pos.erase(i.second);
}
return 0;
}
QCFium