재밌는 문자열 처리들
This commit is contained in:
7
zeta_python/12865.py
Normal file
7
zeta_python/12865.py
Normal file
@@ -0,0 +1,7 @@
|
||||
N, K = map(int, input().split())
|
||||
Ws = [tuple(map(int, input().split())) for i in range(N)] # weight, value
|
||||
|
||||
DP = [[0] * N] * K
|
||||
|
||||
print(DP)
|
||||
|
||||
Reference in New Issue
Block a user