結果

問題 No.938 賢人を探せ
ユーザー stone_725stone_725
提出日時 2019-12-01 07:53:59
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 127,744 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-12-14 11:42:50
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <map>
#include <vector>

using namespace std;

int main(){
    int n;
    cin >> n;
    map<string, int> cnt;
    vector<string> vs(n);
    for(auto&& i : vs){
        string str;
        cin >> str >> i;
        cnt[str]++;
    }
    for(auto&& i : vs){
        if(cnt[i] == 0){
            cout << i << "\n";
            cnt[i]++;
        }
    }
}
0