-Code
arr = ["zilch", "double", "double-double", "triple-double"]
for _ in range(int(input())):
nums = list(map(int, input().split()))
res = 0
for n in nums:
if n >= 10:
res += 1
print(*nums)
print(arr[res])
print()
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 31429번 SUAPC 2023 Summer (0) | 2024.02.19 |
---|---|
[백준/파이썬] 28960번 Плащ левитации (1) | 2024.02.18 |
[백준/파이썬] 13496번 The Merchant of Venice (0) | 2024.02.16 |
[백준/파이썬] 25206번 너의 평점은 (1) | 2024.02.15 |
[백준/파이썬] 18198번 Basketball One-on-One (0) | 2024.02.14 |