반응형 백준31 [백준] 4단계 - 4344번 (파이썬) check! 4344번 https://www.acmicpc.net/problem/4344 C = int(input()) while C>0: li = list(map(int, input().split())) avg = sum(li[1:])/li[0] ans = 0 for i in li[1:]: if i > avg: ans += 1 print( format((ans/li[0])*100, ".3f") + "%" ) #소수점 셋째자리까지 출력 C -= 1 cf) 소수점 자릿수 지정 관련 참고 https://jsikim1.tistory.com/226 2022. 6. 23. [백준] 3단계 - 1095번 (파이썬) check! 1095번 https://www.acmicpc.net/problem/10951 # 1번째 풀이 while True: try: A,B = list(map(int, input().split())) print(A+B) except: break # 2번째 풀이 try: while True: A,B = list(map(int, input().split())) print(A+B) except: exit() 어려웠다...나중에 다시 풀어보자! (사실 입력부분에 대한 문제 이해가 어려웠던 거고 코드 자체는 어렵진 않음...) cf) 2번째 풀이 참고한 사이트 https://wook-2124.tistory.com/247 2022. 6. 20. [백준] 3단계 - 1110번 (파이썬) check! 1110번 https://www.acmicpc.net/problem/1110 def func(x): if x 2022. 6. 20. [백준] 2단계 - 2735번 (C++) 2753번 https://www.acmicpc.net/problem/2753 #include int main(){ int year; int ans=0; scanf("%d", &year); if ((year%4 == 0)&&((year%400==0)||(year%100!=0))){ ans = 1; } printf("%d", ans); return 0; } 2022. 6. 19. 이전 1 ··· 3 4 5 6 7 8 다음 반응형