1
2
3
4
5
6
7
|
while 1:
n=int(input())
if n==0: break
tmp=list(map(int, input().split()))
mary=tmp.count(0)
john=tmp.count(1)
print("Mary won %d times and John won %d times"%(mary,john))
|
cs |
이 문제를 조금 더 까다롭게 만들려면
Mary, John 이기는 경우가 1번이면 times 대신 time 으로 출력되게 하면 어떨까.. 하는 생각이 드네요
반응형
댓글