Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- C
- 인코그니토
- 사칙연산
- 정렬
- writeup
- Web
- HackCTF
- Network
- 문자열
- Digital Forensics
- wargame
- Forensics
- MySQL
- N0Named
- CTF
- 구현
- Text
- cryptography
- 백준
- Incognito
- 수학
- xcz.kr
- Web Hacking
- Python
- Database
- 그리디 알고리즘
- 써니나타스
- misc
- php
- SuNiNaTas
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5533번 유니크 본문
[Baekjoon/Python3] 5533번 유니크
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)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5554번 심부름 가는 길 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5543번 상근날드 (0) | 2020.12.05 |
[Baekjoon/Python3] 5532번 방학 숙제 (0) | 2020.12.05 |
[Baekjoon/Python3] 5524번 입실 관리 (0) | 2020.12.05 |
[Baekjoon/Python3] 5523번 경기 결과 (0) | 2020.12.05 |
Comments