結果
問題 | No.938 賢人を探せ |
ユーザー | totori_nyaa |
提出日時 | 2019-12-01 00:03:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 508 bytes |
コンパイル時間 | 2,067 ms |
コンパイル使用メモリ | 176,404 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-12-14 11:37:08 |
合計ジャッジ時間 | 3,292 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 21 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); ll n; cin>>n; ll INF = -1e9; map<string,int> mp; string b[n]; for(int i=0;i<n;i++){ string a; cin>>a>>b[i]; mp[a] = INF; mp[b[i]]++; } for(int i=0;i<n;i++){ if(mp[b[i]] >0){ cout << b[i] << "\n"; mp[b[i]] = INF; } } }