ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 9498 |
문제명 | 시험 성적 |
레벨 | 브론즈 4 |
분류 |
기초 |
시간복잡도 | O(1) |
사용한 언어 | Python |
제출기록 | 29200KB / 68ms |
최고기록 | 52ms |
해결날짜 | 2021/10/13 |
"""Solution code for "BOJ 9498. 시험 성적".
- Problem link: https://www.acmicpc.net/problem/9498
- Solution link: http://www.teferi.net/ps/problems/boj/9498
"""
def main():
score = int(input())
if score >= 90:
print('A')
elif score >= 80:
print('B')
elif score >= 70:
print('C')
elif score >= 60:
print('D')
else:
print('F')
if __name__ == '__main__':
main()