Notice
Recent Posts
Link
Tags
- springboot
- spring
- spring security 6
- java
- nginx
- PYTHON
- ORM
- Docker
- 프로그래머스
- join
- string
- mysql
- SSL
- jpa
- 스프링부트
- 스프링
- AWS
- select
- 1차원 배열
- DI
- static
- spring mvc
- hibernate
- sql
- @transactional
- Django
- 자바
- 문자열
- spring boot
- 데이터베이스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
목록백준 11720번 (1)
개발하는 자몽

문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String numbers = br.readLine(); int sum = 0; for(int i=0; i
Algorithm
2022. 4. 13. 14:28