[BaekJoon] 33165번 - 徒競走 (Footrace) [Java][C++]
[BaekJoon] 33165번 - 徒競走 (Footrace) [Java][C++]
1. 아이디어
1초에 V미터를 갈 수 있으니, T초 동안은 $V \times T$ 미터를 갈 수 있다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(br.readLine());
int v = Integer.parseInt(br.readLine());
System.out.println(t * v);
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int t, v;
cin >> t >> v;
cout << t * v;
}
3. 디버깅
없음.
4. 참고
없음.
This post is licensed under CC BY 4.0 by the author.