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
- Incognito
- 사칙연산
- Digital Forensics
- xcz.kr
- N0Named
- MySQL
- CTF
- php
- 수학
- 정렬
- Database
- Web Hacking
- misc
- 백준
- Forensics
- Python
- 써니나타스
- Network
- Web
- 인코그니토
- cryptography
- wargame
- Text
- writeup
- HackCTF
- 그리디 알고리즘
- 구현
- SuNiNaTas
- 문자열
- C
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 3035번 스캐너 본문
[Baekjoon/Python3] 3035번 스캐너
i = 0
new = []
res = ''
a, b, c, d = map(int, input().split())
for i in range(a):
article = input()
for k in range(c):
for j in range(b):
res += article[j] * d
new.append(res)
res = ''
for i in new:
print(i)
i = 0
a, b, c, d = map(int, input().split())
for i in range(a):
article = input()
for k in range(c):
for j in range(b):
res = article[j] * d
print(res, end='')
print()
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 3046번 R2 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 3036번 링 (0) | 2020.12.04 |
[Baekjoon/Python3] 3009번 네 번째 점 (0) | 2020.12.04 |
[Baekjoon/Python3] 2965번 캥거루 세마리 (0) | 2020.12.04 |
[Baekjoon/Python3] 2954번 창영이의 일기장 (0) | 2020.12.04 |
Comments