https://www.acmicpc.net/problem/2921
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()) - 1;
int b = Integer.parseInt(st.nextToken()) - 1;
System.out.println(Math.abs(a / 4 - b / 4) + Math.abs(a % 4 - b % 4));
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 5523 경기결과 (0) | 2022.12.09 |
---|---|
백준 1290 Mini Fantasy War (0) | 2022.12.08 |
백준 1598 꼬리를 무는 숫자 나열 (0) | 2022.12.08 |
백준 5988 홀수일까 짝수일까 (0) | 2022.12.07 |
백준 4458 첫 글자를 대문자로 (0) | 2022.12.07 |