728x90
문제
https://www.acmicpc.net/problem/2914
풀이 코드
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 a = Integer.parseInt(st.nextToken());
int i = Integer.parseInt(st.nextToken());
System.out.println(a * (i-1) + 1);
}
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준] 1157 단어 공부(자바) (0) | 2021.09.18 |
---|---|
[백준] 1152 단어의 개수 - 자바, StringTokenizer (0) | 2021.09.17 |
[백준] 2845 파티가 끝나고 난 뒤 - 자바 (0) | 2021.09.16 |
[백준] 2338 긴자리 계산 - 자바, BigInteger (0) | 2021.09.15 |
[백준] 1550 16진수 - 자바 (0) | 2021.09.15 |
댓글