Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- wargame
- Incognito
- misc
- 정렬
- Digital Forensics
- 수학
- Web Hacking
- 문자열
- Forensics
- 백준
- 그리디 알고리즘
- 인코그니토
- Network
- C
- 구현
- 써니나타스
- MySQL
- Web
- SuNiNaTas
- 사칙연산
- writeup
- Python
- cryptography
- HackCTF
- php
- xcz.kr
- Database
- Text
- CTF
- N0Named
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2675번 문자열 반복 본문
[Baekjoon/Python3] 2675번 문자열 반복
n = int(input())
for i in range(n):
res = ''
r, s = input().split()
r = int(r)
for j in range(len(s)):
res += s[j] * r
print(res)
t_case = int(input())
for i in range(t_case):
r, string = input().split()
r = int(r)
res = '' # str != list
for s in string:
res += s * r
print(res)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2720번 세탁소 사장 동혁 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 2702번 초6 수학 (0) | 2020.12.04 |
[Baekjoon/Python3] 2609번 최대공약수와 최소공배수 (0) | 2020.12.04 |
[Baekjoon/Python3] 2588번 곱셈 (0) | 2020.12.03 |
[Baekjoon/Python3] 2587번 대표값2 (0) | 2020.12.03 |
Comments