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
- HackCTF
- SuNiNaTas
- Python
- 인코그니토
- writeup
- xcz.kr
- Web
- Digital Forensics
- MySQL
- 문자열
- 수학
- CTF
- Network
- misc
- 그리디 알고리즘
- 백준
- Database
- Web Hacking
- cryptography
- php
- 써니나타스
- Incognito
- Forensics
- 구현
- 사칙연산
- C
- 정렬
- wargame
- Text
- N0Named
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 9243번 파일 완전 삭제 본문
[Baekjoon/Python3] 9243번 파일 완전 삭제
n = int(input())
before = list(map(int, input()))
after = list(map(int, input()))
if n % 2:
for i in range(len(before)):
if before[i] == 0:
before[i] = 1
else:
before[i] = 0
if before == after:
print('Deletion succeeded')
else:
print('Deletion failed')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 9316번 Hello Judge (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 9296번 Grading Exams (0) | 2020.12.05 |
[Baekjoon/Python3] 9095번 1, 2, 3 더하기 (0) | 2020.12.05 |
[Baekjoon/Python3] 9086번 문자열 (0) | 2020.12.05 |
[Baekjoon/Python3] 9085번 더하기 (0) | 2020.12.05 |
Comments