Notice
Recent Posts
Link
Tags
- spring security 6
- spring mvc
- mysql
- 문자열
- java
- string
- hibernate
- 자바
- AWS
- nginx
- 1차원 배열
- springboot
- select
- Docker
- 프로그래머스
- SSL
- 데이터베이스
- PYTHON
- 스프링부트
- join
- static
- sql
- jpa
- ORM
- spring boot
- 스프링
- spring
- DI
- Django
- @transactional
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
목록백준 1157번 (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)); String input = br.readLine(); int cnt[] = new int[26]; for (byte inputs : input.getBytes()) { if (inputs >= 97) { cnt[inputs - 'a']++; } else { c..
Algorithm
2022. 4. 17. 14:36