백준 2845 - python 풀이
·
Algorithm/백준
구현부터 차근차근 연습 import sys input = sys.stdin.readline # L은 사람의 수 # P는 파티장 넓이 L, P = map(int, input().split()) attend = list(map(int, input().split())) real = L * P for i in attend: print(i - real, end=' ')
takoyummy
'2845 python' 태그의 글 목록