본문 바로가기

Study/알고리즘73

[백준 알고리즘] 1193번 Python 문제 정보 제출 코드 # https://wlstyql.tistory.com/53 참고 x = int(input()) stage, start_data = 1, 1 while stage+start_data 2021. 10. 4.
[백준 알고리즘] 2292번 Python 문제 정보 제출 코드 # 육각형이 하나씩 생길 때마다 숫자는 6의 배수*육각형 수만큼 늘어났음 (6, 12, 18, 24) n = int(input()) if(n==1): print(1) exit() total = 2 count = 7 count_m = 2 while(True): if(n>count): count += 6*count_m count_m += 1 total += 1 else: print(total) break 2021. 10. 4.
[백준 알고리즘] 1712번 Python 문제 정보 제출 코드 fix_pay, variable_pay, product_pay = map(int, input().split()) if(product_pay-variable_pay 2021. 10. 4.
[백준 알고리즘] 1978번 Python 문제 정보 제출 코드 count = int(input()) total = count n = list(map(int, input().split())) if(1 in n): n.remove(1) total -= 1 for j in n: for k in range(2,j): if(j%k==0): total -= 1 break print(total) 2021. 10. 4.
[백준 알고리즘] 1316번 Python 문제 정보 제출 코드 count = int(input()) total = 0 for i in range(count): word = input() check = 0 for i in range(len(word)-1): if(word[i]==word[i+1]): continue elif(word[i] in word[i+1:]): check = 1 break if(check==0): total += 1 print(total) 2021. 10. 4.
[백준 알고리즘] 2941번 Python 문제 정보 제출 코드 word = input() croatia_list = ["c=","c-","dz=","d-","lj","nj","s=","z="] total = 0 for croatia in croatia_list: total += word.count(croatia) word = word.replace(croatia, " ") total+=len(word.replace(" ","")) print(total) 2021. 10. 4.
[백준 알고리즘] 5622번 Python 문제 정보 제출 코드 word = input() total = 0 time_list = {"A":3,"B":3,"C":3,"D":4,"E":4,"F":4,"G":5,"H":5,"I":5,"J":6,"K":6,"L":6,"M":7,"N":7,"O":7,"P":8,"Q":8,"R":8,"S":8,"T":9,"U":9,"V":9,"W":10,"X":10,"Y":10,"Z":10} for s in word: total += time_list[s] print(total) 2021. 10. 4.
[백준 알고리즘] 2908번 Python 문제 정보 제출 코드 a, b = input().split() a = int(a[::-1]) b = int(b[::-1]) if(a 2021. 10. 4.
[백준 알고리즘] 1152번 Python 문제 정보 제출 코드 string = input().split() print(len(string)) 2021. 10. 4.