Programming36 현대_Softeer_level3_성적 평가_파이썬 문제 링크 파이썬 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 import sys def who_champ(now_list): new_list = now_list[::] new_list.sort(reverse=True) ans = [0 for i in range(len(now_list))] fuck_dict = {} real_rank = 0 temp_score = 3001 for k in new_list: if temp_score>k: real_rank +=1 fuck_dict[k] = real_rank temp_score = k elif temp_score==k: r.. 2023. 1. 17. 현대_Softeer_level2_바이러스_파이썬 문제 링크 파이썬 1 2 3 4 5 6 limit = 1000000007 K,P,N = map(int,input().split()) for i in range(N): if K 2023. 1. 17. 현대_Softeer_level2_비밀 메뉴_파이썬 문제 링크 파이썬 1 2 3 4 5 6 7 first = input() second = str(input()) third = str(input()) if len(third.split(second))>1: print('secret') else: print('normal') cs Be positive! Be rich! Live your life! 2023. 1. 17. 현대_Softeer_level2_지도 자동 구축_파이썬 문제 링크 파이썬 1 2 3 4 5 6 how_many = int(input()) now = 2 for i in range(1,how_many+1): now = ((now*2)-1) print((now)**2) cs Be positive! Be rich! Live your life! 2023. 1. 17. 이전 1 2 3 4 5 6 7 8 9 다음