結果
問題 |
No.3196 Unique Nickname
|
ユーザー |
|
提出日時 | 2025-07-11 21:23:47 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 378 bytes |
コンパイル時間 | 3,357 ms |
コンパイル使用メモリ | 285,972 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-07-11 21:23:51 |
合計ジャッジ時間 | 3,797 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; int main(){ int n; cin>>n; vector<string> s(n),t(n); for(int i=0;i<n;i++)cin>>s[i]>>t[i]; map<string,int> dict; for(int i=0;i<n;i++){ dict[s[i]]++; dict[t[i]]++; } bool ok=true; for(int i=0;i<n;i++){ if(dict[s[i]]!=1&&dict[t[i]]!=1)ok=false; } if(ok)cout<<"Yes"<<endl; else cout<<"No"<<endl; }