https://www.acmicpc.net/problem/2675
1. 내가 작성한 코드
test_case = int(input())
for i in range(test_case):
a,b = input().split()
for j in b:
print(int(a) * j, end='')
print()
마지막에 있는 print() 를 넣지 않고 돌렸더니
출력과 다음 입력이 같은 줄에 겹쳐나와 틀렸다.
end = '' 쓸 때 주의하기 ❗ 처음 알았네 ㅇㅅㅇ
'🔅코딩테스트 공부🔅 > ❗백준' 카테고리의 다른 글
[백준] 1152번 단어의 개수(with python) (0) | 2023.01.20 |
---|---|
[백준] 1157번 단어 공부(with python) (0) | 2023.01.20 |
[백준] 10809번 알파벳 찾기(with python) (0) | 2023.01.20 |
[백준] 11720번 숫자의 합(with python) (0) | 2023.01.20 |
[백준] 11654번 아스키 코드(with python) (0) | 2023.01.20 |
댓글