結果

問題 No.3196 Unique Nickname
ユーザー Yakumo221
提出日時 2025-07-11 23:01:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 55,324 KB
最終ジャッジ日時 2025-07-11 23:01:19
合計ジャッジ時間 2,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
st = [list(input().split()) for i in range(n)]

dic = defaultdict(int)

for s,t in st:
	dic[s] += 1
	dic[t] += 1

for s,t in st:
	if dic[s] == 1:
		continue

	if dic[t] == 1:
		continue
	print("No")
	exit()

print("Yes")
0