[백준] #1455 뒤집기 II python
2023. 5. 4. 21:53
https://www.acmicpc.net/problem/1455
📕 설명 📕
python의 역 indexing을 이용해서 쉽게 풀이하였다.
입력을 받는 과정에서 값을 integer로 받아오기 위해 map을 사용했다.
🧑🏻💻 나의 풀이 🧑🏻💻
N, M = map(int, input().split())
src = []
for _ in range(N):
tmp = []
for i in input():
tmp.append(i)
tmp = list(map(int, tmp))
src.append(tmp)
cnt = 0
for i in range(N - 1, -1, -1):
for j in range(M - 1, -1, -1):
if src[i][j]:
cnt += 1
for p in range(i + 1):
for q in range(j + 1):
if src[p][q] == 1:
src[p][q] = 0
else:
src[p][q] = 1
print(cnt)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1535 안녕 python (0) | 2023.05.08 |
---|---|
[백준] #1138 한 줄로 서기 python (0) | 2023.05.05 |
[백준] #1441 비슷한 단어 python (0) | 2023.05.03 |
[백준] #1254 팰린드롬 만들기 python (0) | 2023.05.01 |
[백준] #2535 아시아 정보올림피아드 python (0) | 2023.04.14 |