[BaekJoon] 28113번 - 정보섬의 대중교통 [Java][C++]
[BaekJoon] 28113번 - 정보섬의 대중교통 [Java][C++]
1. 문제 풀이
버스를 탑승할 때까지 걸리는 시간은 $A$ 이며, 지하철을 탑승할 때까지 걸리는 시간은 $\max(N, B)$ 이다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
if (A < Math.max(N, B)) {
System.out.println("Bus");
} else if (A > Math.max(N, B)) {
System.out.println("Subway");
} else {
System.out.println("Anything");
}
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, a, b;
cin >> n >> a >> b;
if (a < max(n, b)) {
cout << "Bus";
} else if (a > max(b, n)) {
cout << "Subway";
} else {
cout << "Anything";
}
}
This post is licensed under CC BY 4.0 by the author.