[D3] 최대 조작 횟수 - 17642
성능 요약
메모리: 20,764 KB, 시간: 142 ms, 코드길이: 768 Bytes
제출 일자
2023-10-20 10:39
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.*;
import java.io.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int tc = 1; tc <= T; tc++)
{
long a = sc.nextLong();
long b = sc.nextLong();
long oper = maxOper(a,b);
System.out.printf("#%d %d\n",tc,oper);
}
}
private static long maxOper(long a, long b){
if(a > b){
return -1;
}else if(a == b){
return 0;
}
long diff = Math.abs(a - b);
if(diff == 1){
return -1;
}else if(diff % 2 == 0){
return diff / 2;
}else{
return (diff - 1) / 2;
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 16800번 구구단 걷기 자바(Java) (0) | 2023.10.20 |
---|---|
[SW expert Academy] SWEA 16910번 원 안의 점 자바(Java) (0) | 2023.10.20 |
[SW expert Academy] SWEA 17319번 문자열문자열 자바(Java) (0) | 2023.10.20 |
[SW expert Academy] SWEA 17937번 큰 수의 최대공약수 자바(Java) (0) | 2023.10.20 |
[SW expert Academy] SWEA 18662번 등차수열 만들기 자바(Java) (0) | 2023.10.20 |