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
- Network
- 써니나타스
- 문자열
- 구현
- 그리디 알고리즘
- Database
- CTF
- Text
- Web
- 인코그니토
- Digital Forensics
- C
- HackCTF
- Incognito
- 정렬
- wargame
- 수학
- writeup
- SuNiNaTas
- misc
- N0Named
- php
- MySQL
- 백준
- Forensics
- Web Hacking
- xcz.kr
- Python
- cryptography
- 사칙연산
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5363번 요다 본문
[Baekjoon/Python3] 5363번 요다
n = int(input())
for i in range(n):
string = list(map(str, input().split()))
print(*string[2:], *string[:2])
n = int(input())
for i in range(n):
string = list(map(str, input().split()))
string += string[0:2]
del string[0:2]
for j in string:
print(j, end=' ')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5523번 경기 결과 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5522번 카드 게임 (0) | 2020.12.05 |
[Baekjoon/Python3] 5361번 전투 드로이드 가격 (0) | 2020.12.05 |
[Baekjoon/Python3] 5355번 화성 수학 (0) | 2020.12.05 |
[Baekjoon/Python3] 5354번 J박스 (0) | 2020.12.05 |
Comments