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 |
Tags
- Class
- Tree
- 자바
- Data Structure
- Binary Tree
- java
- SQL
- database
- Method
- hash table
- Binary Search
- bit manipulation
- 구현
- dynamic programming
- Number Theory
- 파이썬
- Matrix
- implement
- Math
- array
- greedy
- simulation
- string
- 코테
- geometry
- sorting
- Counting
- two pointers
- Stack
- 코딩테스트
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 출력하기 본문
1. Input, Output, Example
2. Constraint
1) 1 ≤ str의 길이 ≤ 1,000,000
2) str에는 공백이 없으며, 첫째 줄에 한 줄로만 주어진다.
3. Code
1) 첫 코드(2023/04/24)
import java.io.*;
public class Solution {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.print(br.readLine());
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자열 반복해서 출력하기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] a와 b 출력하기 (0) | 2023.04.24 |
[LeetCode/Easy] 1984. Minimum Difference Between Highest and Lowest of K Scores (0) | 2023.04.24 |
[LeetCode/Easy] 1974. Minimum Time to Type Word Using Special Typewriter (0) | 2023.04.24 |
[LeetCode/Easy] 1945. Sum of Digits of String After Convert (0) | 2023.04.24 |