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
- 레드마인 테마
- CentOS
- node postgresql
- 패키지
- node.js postgresql
- intelij sqlmap
- Redmine theme
- nodejs 환경변수처리
- 배열컬럼
- 메소드한줄
- sqlmap 경고
- rpm목록
- 리액트네이티브
- Java
- dotenv
- 멀티 인스턴스
- intelij mybatis
- 배열크기
- Node
- rpm설치목록
- yum설치목록
- yum목록
- multi instance
- sqlmap warring
- .env
- 레드마인
- pg환경변수
- 레드마인테마
- redmine
- tomcat install
Archives
- Today
- Total
ZeroRadish
[백준] 1912번 연속합(JAVA) 본문
https://www.acmicpc.net/problem/1912
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
int max = Integer.MIN_VALUE, currentSum = 0;
for (int i = 0; i < N; i++) {
int num = scanner.nextInt();
currentSum = Math.max(num, currentSum + num);
max = Math.max(max, currentSum);
}
System.out.println(max);
}
}
Comments