반응형
문제
https://www.acmicpc.net/problem/28288
해설
numpy를 사용 못하니 map을 이용해서 계산해보았다.
person = int(input())
schedule = [
[int(d) for d in list(input().replace(".", "0").replace("Y", "1"))]
for _ in range(person)
]
vec = list(map(sum, zip(*schedule)))
result = [str(i + 1) for i, x in enumerate(vec) if x == (max(vec))]
print(",".join(result))
반응형