Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 오라클
- 리눅스
- pybithumb
- 파이썬 가상환경
- spring
- JavaScript Obejct Notation
- Web Service Architecture
- 단순 반복 자동화
- 프로그래머스 SQL
- JSON 형식
- 리눅스 rwx
- Web Server란
- 프로그래머스
- 파이썬 주식
- BigDecimal
- 파이썬
- string format
- 와스 웹서버의 차이
- 빗썸 API 사용
- 리눅스 777
- WAS WebServer 차이
- java
- 변동성 돌파전략
- JSON특징
- WAS란
- 프로그래머스 소수
- 트레이딩 봇 만들기
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- beautifulsoup
Archives
- Today
- Total
IT 개발자_S
해커랭크 Desinger PDF Viewer 본문
반응형
1. 알바벳 오름차순으로 값 입력
2. 입력된 알파벳중 가장큰값을 찾아 , 알파벳 길이* max 값 출력
해당값을 찾기 위해 파이썬 ord() 를 사용하여 알파벳을 숫자형태로 바꾸고 a =97 활용하여 로직을 구성
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the designerPdfViewer function below.
def designerPdfViewer(h, word):
maxCnt = 0
for i in range(len(word)) :
res = ord(word[i]) -97
if(h[res] > maxCnt) :
maxCnt = h[res]
return maxCnt *len(word)
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
h = list(map(int, input().rstrip().split()))
word = input()
result = designerPdfViewer(h, word)
fptr.write(str(result) + '\n')
fptr.close()
반응형
'IT > 알고리즘_Python' 카테고리의 다른 글
해커랭크 Angry Professor (0) | 2020.05.05 |
---|---|
해커랭크 Utopian Tree (0) | 2020.04.02 |
해커랭크 The Hurdle Race (0) | 2020.03.31 |
해커랭크 Picking Numbers (0) | 2020.03.29 |
해커랭크 Brithday Chocolate (0) | 2020.03.22 |
Comments