[Programmers] #181951 - a와 b 출력하기 [Java][C++][Python]
입력받은 정수 a, b를 지정된 형식으로 출력하는 워밍업 문제.
[Programmers] #181951 - a와 b 출력하기 [Java][C++][Python]
1. 아이디어
정수 a, b를 입력받아 a = {a}, b = {b} 형식으로 각각 한 줄에 출력하면 되는 문제다.
2. 복잡도
| 접근 | 시간 | 공간 |
|---|---|---|
| 풀이 | $O(1)$ | $O(1)$ |
3. 코드
풀이 [Java][C++][Python]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
System.out.println("a = " + a);
System.out.println("b = " + b);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int a, b;
cin >> a >> b;
cout << "a = " << a << '\n';
cout << "b = " << b << '\n';
}
1
2
3
4
5
6
7
import sys
input = sys.stdin.readline
a, b = map(int, input().split())
print(f"a = {a}")
print(f"b = {b}")
This post is licensed under CC BY 4.0 by the author.