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
- 영어말하기
- 안드로이드주석
- opic
- 다이나믹프로그래밍
- 이진탐색
- stack 스택
- 안드로이드
- fibo
- 오픽노잼공부방법
- topdown
- English
- 이진탐색 #나무 자르기
- 오픽공부법
- 탑다운
- dp
- 주석
- 오픽점수잘받는방법
- 오픽가격
- 영어회화
- 오픽노잼
- XML주석
- 피보나치수열
- XML
- ㅂ
- 바텀업
- 오픽
- 디피
- 메모이제이션
- dynamicProgramming
Archives
RUBY
왕실의 나이트 본문
출처::
1. 문제 이해 및 해결과정
2. 풀이방법
1. 방향을 dh,dw나누어서 풀 때
#왕실의 나이트
#
import sys
sys.stdin = open("input.txt","r")
start=input()
sh=int(ord(start[0])-96)
sw=int(start[1])
dh=[-2,-1,1,2,2,1,-1,-2]
dw=[1,2,2,1,-1,-2,-2,-1]
cnt=0
for i in range(8):
nh=sh+dh[i]
nw=sw+dw[i]
if nh<1 or nw<1 or nh>8 or nw>8:
continue
else:
cnt+=1
print(cnt)
2. 방향을 한 리스트에 담은 경우
#왕실의 나이트
#
import sys
sys.stdin = open("input.txt","r")
start=input()
sh=int(ord(start[0])-96)
sw=int(start[1])
dir = [ (-2,-1),(-1,-2),(1,-2),(2,-1),(2,1),(1,2),(-1,2),(-2,1)]
cnt=0
for d in dir:
nh=sh+d[0]
nw=sw+d[1]
if nh<1 or nw<1 or nh>8 or nw>8:
continue
else:
cnt+=1
print(cnt)
3. 오답원인
4. 알게된 점
문자a를 숫자로 바꾸는 과정
: ord(a) 하면 아스키코드 값이 나온다
sh=int(ord(start[0])-96)
Comments