結果

問題 No.3196 Unique Nickname
ユーザー i_taku
提出日時 2025-07-14 13:43:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 55,452 KB
最終ジャッジ日時 2025-07-14 13:43:38
合計ジャッジ時間 2,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


N = int(input())
cnt = defaultdict(int)
S, T = [], []
for _ in range(N):
    s, t = input().split()
    S.append(s)
    T.append(t)
    cnt[s] += 1
    cnt[t] += 1
for s, t in zip(S, T):
    if cnt[s] == 1 or cnt[t] == 1:
        continue
    print('No')
    exit()

print('Yes')
0