목록문제 풀이 (103)
honey_pot
n = int(input()) money = [] for _ in range(n): a, b, c = map(int, input().split()) if a ==b and b ==c : money.append(10000+b*1000) elif a==b or b == c : money.append(1000+b*100) elif a ==c : money.append(1000+a*100) else: money.append(max(a, b, c)*100) print(max(money)) 출력 부분 제대로 안 읽고 2480번이랑 똑같은 형식으로 구해서 출력 오류 떴다 문제를 제대로 읽자!!!!
while True: a, b = map(int, input().split()) if a > b: print("Yes") elif a==0 and b ==0:break else: print("No")
a, b, c = map(int, input().split()) if a == b and b == c: print(10000+a*1000) elif a ==b or b ==c: print(1000+b*100) elif a == c: print(1000+a*100) else: print(max(a, b, c)*100)
c = input() pre = c[0] post = c[1:] if pre == 'A': if post == '+': print(4.3) elif post == '0': print(4.0) else: print(3.7) if pre == 'B': if post == '+': print(3.3) elif post == '0': print(3.0) else: print(2.7) if pre == 'C': if post == '+': print(2.3) elif post == '0': print(2.0) else: print(1.7) if pre == 'D': if post == '+': print(1.3) elif post == '0': print(1.0) else: print(0.7) if pre == ..
n = int(input()) # 테스트 케이스 개수 n for _ in range(n): # n개의 케이스 동안 t = int(input()) # 학교수 t data = dict() # 학교 : 술 담을 dict 객체 생성 for _ in range(t): # 학교수 t 동안 a, b = input().split() # 학교명은 a에, 술 양은 b에 담음 data[a] = int(b) # data[key] = value 구조로 저장, 술 양은 int로 형변환 reverse_data = dict(map(reversed, data.items())) # dict의 key와 value 위치를 바꿈 # reverse_data 의 구조는 {술양 : 학교명} 상태 # key(술양) 중 가장 큰 값(max) 구하고,..