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 |
Tags
- re.split
- 백준 파이썬
- 프로그래머스
- 백준 17779
- spring cloud
- spring security
- with recursive
- 백준 16236
- Coroutine
- 파이썬
- java
- 백준 19238
- 웹어플리케이션 서버
- Spring
- MSA
- Kotlin
- 백준
- 백준 17626
- JVM
- java 기술면접
- 프로래머스
- Spring Boot
- JPA
- MySQL
- 백준 16719
- springboot
- spring oauth
- 백준 15685
- sql 기술면접
- 백준 16235
Archives
- Today
- Total
시작이 반
[백준] 1244번번 (python 파이썬) 본문
SMALL
구현 문제이다.
남자일 경우
받은 숫자의 배수의 스위치를 반전시킨다.
여자일 경우
받은 숫자의 대칭되는 스위치를 반전시킨다.
ex)
번호 1 2 3 4 5 6 7 8
스위치 0 1 0 1 1 1 1 0
일떄
받은 숫자가 6이라면
0 1 0 1 0 0 0 0 이된다.
구현은 쉽다.
하지만 출력 형식이 20개씩 잘라서 출력하는 것임을 명심하자!
n = int(input())
switch = list(map(int, input().split(' ')))
students = int(input())
receive_n = [tuple(map(int, input().split(' '))) for _ in range(students)]
# 1: 남, 2: 여
for i in range(students):
if receive_n[i][0] == 1: # 남 배수
c_switch_number = receive_n[i][1]
j = 1
n_switch_number = c_switch_number * j
while n_switch_number <= n:
switch[n_switch_number - 1] = abs(switch[n_switch_number - 1] - 1)
j += 1
n_switch_number = c_switch_number * j
elif receive_n[i][0] == 2: # 여 대칭
switch_number = receive_n[i][1]
j = 0
while True:
if j == 0:
switch[switch_number - 1] = abs(switch[switch_number - 1] - 1)
else:
left = switch_number - 1 - j
right = switch_number - 1 + j
if left >= 0 and right < n:
if switch[left] == switch[right]:
switch[left] = abs(switch[left] - 1)
switch[right] = abs(switch[right] - 1)
else:
break
else:
break
j += 1
div_twen = 0
for i in range(len(switch) // 20):
for j in range(20):
print(switch[j + div_twen], end=' ')
print()
div_twen = (i+1) * 20
for i in range(len(switch) % 20):
print(switch[div_twen + i], end=' ')
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 20436번번 (python 파이썬) (0) | 2021.03.30 |
---|---|
[백준] 20291번번 (python 파이썬) (0) | 2021.03.29 |
[백준] 4396번번 (python 파이썬) (0) | 2021.03.29 |
[백준] 2578번번 (python 파이썬) (0) | 2021.03.25 |
[백준] 12933번번 (python 파이썬) (3) | 2021.03.25 |