[Alogorithm] D-11 구현
외벽점검
계속 봐도 모르겠다
날짜 계산
# https://www.acmicpc.net/problem/1476
E, S, M = map(int, input().split())
result = 0
iE, iS, iM = 0, 0, 0
while True:
if E == iE and S == iS and M == iM:
break
else:
iE += 1
iS += 1
iM += 1
result += 1
if iE > 15:
iE = 1
if iS > 28:
iS = 1
if iM >19:
iM = 1
print(result)
덩치
n=int(input())
data=[]
for i in range (n):
data.append(list(map(int,input().split())))
for i in data:
cnt=1
for j in data:
if i[0]<j[0] and i[1]<j[1]:
cnt+=1
print(cnt)
두 문제 모두 그냥 다 확인해보는 식으로 하면 된다.
Author And Source
이 문제에 관하여([Alogorithm] D-11 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jifrozen/Alogorithm-D-11-구현저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)