일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- online
- 설치
- Framework
- ubuntu
- 연동
- r script
- OrientDB
- 알고리즘
- 오픈한글
- r
- Tornado
- AWS
- Java
- 자바스크립트
- 이클립스
- 연결
- 토네이도
- 프레임워크
- 저지
- BAEKJOON
- Judge
- 자료형
- spring
- MongoDB
- API
- Python
- mariadb
- 배열
- 백준
- 파이썬
Archives
- Today
- Total
목록숫자삼각형 (1)
맛동산
백준 알고리즘 저지 1932번 문제 (https://www.acmicpc.net/problem/1932) a=[] for i in range(int(input())): if i==0:a.append(int(input())) elif i==1: aa,bb=list(map(int,input().split())) a.append([aa+a[i-1],bb+a[i-1]]) else: temp=list(map(int,input().split())) a.append([]) c = 0 for j in temp: if c==0: a[i].append( a[i-1][0]+j ) elif c==len(temp)-1: a[i].append( a[i-1][-1]+j ) else: if a[i-1][c-1]+j>a[i-1][c]..
파이썬/알고리즘
2017. 5. 29. 14:47