본문 바로가기
백준문제/브론즈 4

백준) 30868번 - python

by kiseno 2024. 5. 6.
728x90
반응형
SMALL
for i in range(int(input())):
    a = int(input())
    print('++++ ' * (a // 5) + "|" * (a % 5))
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 31280번 - python  (0) 2024.05.08
백준) 31090번 - python  (0) 2024.05.07
백준) 30468번 - python  (0) 2024.05.05
백준) 30794번 - python  (0) 2024.05.04
백준) 30008번 - python  (0) 2024.05.03