티스토리 뷰
반응형
문제
풀이
문제의 끝부분을 안읽어서 출력형식 오류를 두번이나..
import sys
N = int(sys.stdin.readline())
switch_list = list(map(int, sys.stdin.readline().split(" ")))
switch_list.insert(0, 0)
def toggle(i):
switch_list[i] = abs(switch_list[i] - 1)
def boys(int):
current = int
while current <= N:
toggle(current)
current += int
def girls(int):
total = min(N + 1 - int, int)
toggle(int)
for i in range(total):
if switch_list[int + i] == switch_list[int - i]:
toggle(int + i)
toggle(int - i)
else:
break
students = int(sys.stdin.readline())
for _ in range(students):
s, num = map(int, sys.stdin.readline().split(" "))
if s == 1:
boys(num)
else:
girls(num)
for k in range(0, N, 20):
for switch in switch_list[1+k:21+k]:
print(switch, end=" ")
print()
반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 백준 1644
- 카카오톡으로 로그인 오류
- 안드로이드 키해시
- 카카오 기출
- 코틀린
- 투포인터 알고리즘 파이썬
- 백준
- 카카오 키해시
- 백준 2003
- 안드로이드 카카오톡으로 로그인
- 데이터바인딩 뷰바인딩 차이
- 소수 구하기 파이썬
- 투포인터 알고리즘
- 코틀린 리스트뷰
- 코틀린 바텀네비게이션
- 안드로이드
- 시뮬레이터 키보드
- 코틀린 데이터바인딩
- 파이썬 최대공약수
- TextFormField keyboard
- flutter simultor
- 백준 1806
- kotlin fragment
- 코틀린 뷰바인딩
- 전화번호목록 파이썬
- 코틀린 뷰페이저
- Kotlin
- counting sort
- 프로그래머스
- 백준알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함