본문 바로가기
알고리즘/소스코드

KOREATECH 1047: 몇 가지 음악을 듣고 있을까

by cjw.git 2020. 12. 11.

Link : judge.koreatech.ac.kr/problem.php?id=1047


Python

더보기
1
2
3
4
5
6
7
8
9
10
from sys import stdin
 
dp = dict()
case_cnt = int(stdin.readline().strip())
 
for _ in range(case_cnt):
    data = int(stdin.readline().strip())
    dp[data] = 0
 
print(len(dp))
cs

FeedBack

  1.  

 

 

 

cjw.git@gmail.com

댓글