Introfor

[Intro] centuryFromYear 본문

Programming_prob/Codesignal

[Intro] centuryFromYear

YongArtist 2020. 7. 18. 14:36

Given a year, return the century it is in. The first century spans from the year 1 up to and including the year 100, the second - from the year 101 up to and including the year 200, etc.

주어진 년도로 세기를 반환하는 문제. 1세기는 1년~100년까지이고, 101년부터 200년까지 2세기를 뜻한다.

def centuryFromYear(year):
    if(year%100==0):
        return year//100
    else:
        return (year//100)+1

 

주어진 year가 100으로 나눴을 때 나누어 떨어지면 그 몫이 1세기를 반환하고, 나누어 떨어지지 않으면 나눠서 나온 몫의 +1을 해주면 그 년도의 해당 세기값을 반환한다.

'Programming_prob > Codesignal' 카테고리의 다른 글

[Intro] Make Array Consecutive 2  (0) 2020.07.18
[Intro] shapeArea  (0) 2020.07.18
[Intro] adjacentElementsProduct  (0) 2020.07.18
[Intro] checkPalindrome  (0) 2020.07.18
[Intro] add  (0) 2020.07.18
Comments