보안을 그리다, 훈이

[Baekjoon/Python3] 5533번 유니크 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 5533번 유니크

HooNeee 2020. 12. 5. 21:23

[Baekjoon/Python3] 5533번 유니크

 

www.acmicpc.net/problem/5533

 

5533번: 유니크

첫째 줄에 참가자의 수 N이 주어진다. (2 ≤ N ≤ 200) 둘째 줄부터 N개 줄에는 각 플레이어가 1번째, 2번째, 3번째 게임에서 쓴 수가 공백으로 구분되어 주어진다.

www.acmicpc.net

 

n = int(input())
first = []
second = []
third = []
for i in range(n):
    a, b, c = map(int, input().split())
    first.append(a)
    second.append(b)
    third.append(c)
for j in range(n):
    score = 0
    if first.count(first[j]) == 1:
        score += first[j]
    if second.count(second[j]) == 1:
        score += second[j]
    if third.count(third[j]) == 1:
        score += third[j]
    print(score)
Comments