[SW Expert Academy] 조교의 성적 매기기
*문제의 저작권은 SW Expert에 있습니다. 문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PwGK6AcIDFAUq&categoryId=AV5PwGK6AcIDFAUq&categoryType=CODE T = int(input()) score = ["A+", "A0", "A-", "B+", "B0", "B-", "C+", "C0", "C-", "D0"] for test_case in range(1,T+1): N, K = map(int, input().split()) a = [] c = 0 for t_case in range(1, N + 1): test = list(map(int, input()...
2021. 1. 21.