본문 바로가기
python-algorithm

백준 11257 IT Passport Examination

by 무적김두칠 2022. 9. 20.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def sol(student_number,st,it,tech):
    st_limit = 35
    it_limit = 25
    tech_limit = 40
    result =''
    if st+it+tech>=55 and st>=st_limit*0.3 and it>=it_limit*0.3 and tech>=tech_limit*0.3:
        result="PASS"
    else :
        result="FAIL"
    print("%d %d %s"%(student_number,st+it+tech,result))
 
n=int(input())
for i in range(n):
    student_number,st,it,tech=map(int,input().split())
    sol(student_number,st,it,tech)
 
cs

점수를 입력 받으면
특정 조건에 따라 PASS와 FAIL 을 출력하면 되는 쉬운 문제입니다.

PASS 조건 FAIL 조건에 따라 출력해야하는 문구에서 마지막 문자열만 바꾸면 됩니다.

반응형

'python-algorithm' 카테고리의 다른 글

백준 25591 푸앙이와 종윤이  (0) 2022.09.22
백준 4435 중간계 전쟁  (0) 2022.09.21
백준 25238 가희와 방어율 무시  (0) 2022.09.13
백준 8871 Zadanie próbne 2  (0) 2022.09.13
백준 8545 Zadanie próbne  (0) 2022.09.13

댓글