Skip to content

Commit

Permalink
Merge pull request #266 from Source-Machine-Ent/ningpop
Browse files Browse the repository at this point in the history
[#265] 2449 전구 - 미해결
  • Loading branch information
ningpop authored Jun 29, 2022
2 parents 6dd1a1d + ec29704 commit 5417887
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ningpop/2449.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 2022.06.29
# 풀이 시간: 60분 40초
# 채점 결과: 미해결
# 시간복잡도:
# 문제 링크: https://www.acmicpc.net/problem/2449

import sys

input = sys.stdin.readline

def change():
pass

n, k = map(int, input().rstrip().split())
lights = list(map(int, input().rstrip().split()))

dp = [ [20] * 201 for _ in range(201) ]

0 comments on commit 5417887

Please sign in to comment.