728x90
반응형
test_case_cnt = int(input())
result_list = list()
for i in range(test_case_cnt):
tmp_string = raw_input()
string_list = tmp_string.split(" ")
tmp_result = ""
for s in string_list[1]:
tmp_result = tmp_result + (s * int(string_list[0]))
result_list.append(tmp_result)
for rl in result_list:
print rl
728x90
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 단계별로 풀기 7단계 문자열 사용하기 - 상수 (2908 문제) C언어 (0) | 2019.01.18 |
---|---|
백준 단계별로 풀기 7단계 문자열 사용하기 - 상수 (2908 문제) Python 2 답안 (0) | 2019.01.18 |
백준 단계별로 풀기 7단계 문자열 사용하기 - 알파벳 찾기 (10809 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 7단계 문자열 사용하기 - 아스키 코드 (11654 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 평균 점수 (10039 문제) Python 2 답안 (0) | 2019.01.17 |