結果

問題 No.1893 Cycle
ユーザー eagleeagle
提出日時 2022-05-28 13:58:33
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 928 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 78,636 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-09-20 21:48:31
合計ジャッジ時間 5,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,060 KB
testcase_01 AC 107 ms
41,036 KB
testcase_02 AC 98 ms
39,908 KB
testcase_03 RE -
testcase_04 AC 105 ms
40,720 KB
testcase_05 RE -
testcase_06 AC 93 ms
40,192 KB
testcase_07 RE -
testcase_08 AC 106 ms
41,032 KB
testcase_09 RE -
testcase_10 AC 113 ms
41,064 KB
testcase_11 AC 117 ms
41,176 KB
testcase_12 AC 95 ms
39,600 KB
testcase_13 AC 105 ms
40,744 KB
testcase_14 AC 108 ms
41,464 KB
testcase_15 AC 107 ms
40,920 KB
testcase_16 AC 109 ms
41,152 KB
testcase_17 RE -
testcase_18 AC 105 ms
39,784 KB
testcase_19 RE -
testcase_20 AC 105 ms
40,220 KB
testcase_21 RE -
testcase_22 AC 97 ms
39,972 KB
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int X = sc.nextInt();
		int Y = sc.nextInt();
		//正三角形の頂点の組み合わせ
		int[][] delta = {
			{0, 4, 8},
			{1, 5, 9},
			{2, 6, 10},
			{3, 7, 11}
		};
		//与えられた値から小さい値と大きい値を取り出す
		int minVal;
		int maxVal;
		if(X > Y) {
			minVal = Y;
			maxVal = X;
		} else {
			minVal = X;
			maxVal = Y;
		}
		//どの組み合わせになるかを探す
		int index = -1;
		for(int i = 0; i < 4; i++) {
			if(delta[i][1] == minVal || delta[i][1] == maxVal) {
				index = i;
			}
		}
		//最後の値を取り出す
		int ans = -1;
		for(int i = 0; i < 3; i++) {
			if(delta[index][i] != minVal && delta[index][i] != maxVal) {
				ans = delta[index][i];
			}
		}
		System.out.println(ans);
	}
}
0