알고리즘 문제 풀기/Codeup
Codeup 1165 - 축구의 신 1
bug_maker
2018. 12. 22. 10:45
http://codeup.kr/problem.php?id=1165
Codeup 1165 - 축구의 신 1
xxxxxxxxxxgame_time, score = input().split()game_time = int(game_time)score = int(score)if(game_time % 10 == 0): final_score = score + int((90 - game_time) / 5)else: final_score = score + int((90 - game_time) / 5) + 1print(final_score)