목록백준 (1)
yeonseong
브루트포스 백준 14500번 테트로미노 - 파이썬(Python), 1912ms 통과
문제링크https://www.acmicpc.net/problem/14500정답import sysinput = sys.stdin.readlinen, m = map(int, input().split())info = []res = 0def count_case(shape): cnt = 0 for e in shape: y, x = e if y = n or x = m: return 0 cnt += info[y][x] return cntdef max_count(i, j): # - block case_1 = count_case([(i, j), (i+1, j), (i+2, j), (i+3, j)]) case_2 = count_cas..
알고리즘
2024. 5. 30. 00:34