https://www.acmicpc.net/problem/1598
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));
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 1290 Mini Fantasy War (0) | 2022.12.08 |
---|---|
백준 2921 도미노 (0) | 2022.12.08 |
백준 5988 홀수일까 짝수일까 (0) | 2022.12.07 |
백준 4458 첫 글자를 대문자로 (0) | 2022.12.07 |
백준 10178 할로윈의 사탕 (0) | 2022.12.07 |