본문 바로가기
python-algorithm

[백준] 5751

by 무적김두칠 2021. 3. 19.

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 으로 출력되게 하면 어떨까.. 하는 생각이 드네요

반응형

'python-algorithm' 카테고리의 다른 글

[백준] 7523  (0) 2021.03.19
[백준] 8558  (0) 2021.03.19
[백준] 5235  (0) 2021.03.19
[백준] 5692  (0) 2021.03.16
[백준] 4909  (0) 2021.03.16

댓글