python89 [백준 알고리즘] 1065번 Python 문제 정보 제출 코드 def arithMetic(num): if(numif_count): break tmp = arithMetic(count) if(tmp!=0): n.append(tmp) print(len(n)) 2021. 10. 3. [백준 알고리즘] 4673번 Python 문제 정보 제출 코드 def selfNum(num): tmp = str(num) total = 0 for s in tmp: total += int(s) return num+total n = 1 self_num = [] while(True): tmp = selfNum(n) self_num.append(tmp) if(n>10000): break n += 1 self_num = list(set(self_num)) for i in range(1, 10000): try: self_num.index(i) except: print(i) 2021. 10. 3. [백준 알고리즘] 15596번 Python 문제 정보 제출 코드 def solve(a): total = 0 for i in a: total += int(i) return total 2021. 10. 3. [백준 알고리즘] 4344번 Python 문제 정보 제출 코드 count = int(input()) for i in range(count): data_list = list(map(int, input().split())) student_count = data_list.pop(0) avg_count = 0 avg = sum(data_list, 0.0) / student_count for data in data_list: if(data>avg): avg_count += 1 print("{:.3f}%".format(round(avg_count/student_count*100,3))) 2021. 10. 3. [백준 알고리즘] 8958번 Python 문제 정보 제출 코드 count = int(input()) for i in range(count): n = input() total = 0 score = 0 for s in n: if(s=="X"): score = 0 else: score += 1 total += score print(total) 2021. 10. 3. [백준 알고리즘] 1546번 Python 문제 정보 제출 코드 count = int(input()) n = list(map(int, input().split())) max_v = max(n) total = 0 for i in n: total += i/max_v*100 print(total/count) 2021. 10. 3. [백준 알고리즘] 3052번 Python 문제 정보 제출 코드 n = [] for i in range(0,10): tmp = int(input()) n.append(tmp%42) print(len(set(n))) 2021. 10. 3. [백준 알고리즘] 2577번 Python 문제 정보 제출 코드 n = [] for i in range(0,3): n.append(int(input())) tmp = str(n[0]*n[1]*n[2]) for i in range(0,10): print(tmp.count(str(i))) 2021. 10. 3. [백준 알고리즘] 2562번 Python 문제 정보 제출 코드 n = [] for i in range(0,9): n.append(int(input())) print(max(n)) print(n.index(max(n))+1) 2021. 10. 3. 이전 1 ··· 3 4 5 6 7 8 9 10 다음