본문 바로가기

Python/code problem

[sw expert academy] 5601. [Professional] 쥬스 나누기

https://swexpertacademy.com/main/main.do

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

문제가 재밌다.

근데 그렇게 어렵지는 않은 것 같다.

 

T= int(input())
for t in range(1,T+1):
  N= int(input())
  stng= '1/'+ str(N) + ' '
  print("#{} {}".format(t,stng *N))