結果

問題 No.3196 Unique Nickname
ユーザー tkykwtnb
提出日時 2025-07-11 21:25:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 55,316 KB
最終ジャッジ日時 2025-07-11 21:25:52
合計ジャッジ時間 1,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N=int(input())
S=[]
T=[]
ST=defaultdict(int)
for _ in range(N):
    s,t=input().split()
    S.append(s)
    T.append(t)
    ST[s]+=1
    ST[t]+=1
for s,t in zip(S,T):
    if ST[s]>=2 and ST[t]>=2:
        exit(print("No"))
print("Yes")
0