Post
13218. 조별과제 (SWEA) | Gihun Son

13218. 조별과제 (SWEA)

※ SW expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.

출처:

SW Expert Academy

나의 풀이

1
2
3
4
5
6
7
8
9
T = int(input())

for test_case in range(1, T + 1):
    N=int(input())
    if N//3:
        ans=N//3
    else:
        ans=0
    print(f'#{test_case} {ans}')
  • 3명 미만일 때를 제외하면 모두 N//3개 팀을 만들 수 있다.
This post is licensed under CC BY 4.0 by the author.