[D3] 직사각형 길이 찾기 - 3456
성능 요약
메모리: 27,448 KB, 시간: 181 ms, 코드길이: 417 Bytes
제출 일자
2023-11-01 13:39
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.Scanner;
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++)
{
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = (a == b ? c : (b == c ? a : b));
System.out.println("#" + tc + " " + d);
}
}
}
비트 연산자를 사용한 더 쉬운 풀이
import java.util.Scanner;
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++)
{
int n = 0;
for(int i = 0; i < 3; i++){
n ^= sc.nextInt();
}
System.out.println("#" + tc + " " + n);
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 8338번 계산기 자바(Java) (0) | 2023.11.02 |
---|---|
[SW expert Academy] SWEA 4789번 성공적인 공연 기획 자바(Java) (1) | 2023.11.02 |
[SW expert Academy] SWEA 1229번 암호문2 자바(Java) (1) | 2023.11.01 |
[SW expert Academy] SWEA 5986번 새샘이와 세 소수 자바(Java) (0) | 2023.11.01 |
[SW expert Academy] SWEA 4698번 테네스의 특별한 소수 자바(Java) (1) | 2023.11.01 |