[Programmers] 181952번 - 문자열 출력하기 [Java][C++]
[Programmers] 181952번 - 문자열 출력하기 [Java][C++]
1. 아이디어
입력받은 문자열을 그대로 출력하면 된다.
2. 복잡도
| 시간복잡도 | 공간복잡도 |
|---|---|
| $O(N)$ | $O(1)$ |
$N$ = 입력 문자열 길이
3. 코드
풀이 [Java][C++]
1
2
3
4
5
6
7
8
import java.io.*;
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println(br.readLine());
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <string>
using namespace std;
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
string s;
cin >> s;
cout << s;
}
This post is licensed under CC BY 4.0 by the author.