백준 1890번 문제 N×N 게임판에 수가 적혀져 있다. 이 게임의 목표는 가장 왼쪽 위 칸에서 가장 오른쪽 아래 칸으로 규칙에 맞게 점프를 해서 가는 것이다. 각 칸에 적혀있는 수는 현재 칸에서 갈 수 있는 거리를 의미한다. 반드시 오른쪽이나 아래쪽으로만 이동해야 한다. 0은 더 이상 진행을 막는 종착점이며, 항상 현재 칸에 적혀있는 수만큼 오른쪽이나 아래로 가야 한다. 한 번 점프를 할 때, 방향을 바꾸면 안 된다. 즉, 한 칸에서 오른쪽으로 점프를 하거나, 아래로 점프를 하는 두 경우만 존재한다. 가장 왼쪽 위 칸에서 가장 오른쪽 아래 칸으로 규칙에 맞게 이동할 수 있는 경로의 개수를 구하는 프로그램을 작성하시오. 입력 첫째 줄에 게임 판의 크기 N (4 ≤ N ≤ 100)이 주어진다. 그 다음 N..
문제 파이썬 코드 답안 t = int(input()) score = 0 total_score = 0 h = 0 while h < t: a = list(str(input())) for i in a : if i == 'O' : score += 1 total_score = total_score + score if i == 'X' : score = 0 print(total_score) total_score = 0 score = 0 h +=1
import sys t = int(sys.stdin.readline().rstrip()) a = [] a = list(map(int,sys.stdin.readline().split())) max = max(a) new_list = [] for i in a : new_list.append(i/max*100) print(sum(new_list)/t)
a = [] for i in range(0,10) : a.append(int(input())) i = 0 while i < 10 : a[i] = a[i]%42 i += 1 new_list = [] for i in a : if i not in new_list : new_list.append(i) print(len(new_list))
문제 파이썬 코드 답안 a = int(input()) b = int(input()) c = int(input()) a = list(str(a*b*c)) i= 0 count = 0 j=0 while j