結果

問題 No.360 増加門松列
ユーザー mitsuomitsuo
提出日時 2016-05-04 17:13:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,258 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 79,000 KB
実行使用メモリ 55,532 KB
最終ジャッジ日時 2024-10-05 06:35:55
合計ジャッジ時間 5,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 106 ms
53,772 KB
testcase_02 AC 133 ms
54,016 KB
testcase_03 AC 100 ms
53,056 KB
testcase_04 AC 94 ms
52,564 KB
testcase_05 AC 118 ms
54,064 KB
testcase_06 WA -
testcase_07 AC 113 ms
53,960 KB
testcase_08 AC 113 ms
54,184 KB
testcase_09 AC 111 ms
53,780 KB
testcase_10 AC 115 ms
54,332 KB
testcase_11 AC 92 ms
52,252 KB
testcase_12 WA -
testcase_13 AC 95 ms
52,508 KB
testcase_14 AC 112 ms
54,028 KB
testcase_15 AC 110 ms
53,744 KB
testcase_16 AC 99 ms
52,748 KB
testcase_17 AC 110 ms
53,820 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] input = new String[1];
		int i = 0;
		while (sc.hasNext()) {
			input[i] = sc.nextLine();
			i++;
		}
		String[] d = input[0].split(" ");
		int[] dl = new int[d.length];
		for (i = 0; i < d.length; i++) {
			dl[i] = Integer.valueOf(d[i]);
		}

		System.out.println(solve(dl));

		sc.close();
	}

	public static String solve(int[] d) {
		boolean result = false;
		Arrays.sort(d);
		int[] c1 = Arrays.copyOfRange(d, 0, d.length);
		int[] c2 = Arrays.copyOfRange(d, 0, d.length);
		swap(c1, 0, 1);
		swap(c1, 2, 3);
		swap(c1, 4, 4);

		swap(c2, 1, 2);
		swap(c2, 3, 4);
		swap(c2, 5, 6);

		result = isMatch(c1) || isMatch(c2);

		return result ? "YES" : "NO";
	}

	private static boolean isMatch(int[] c) {
		for (int i = 0; i + 2 < c.length; i++) {
			if (c[0] == c[1] || c[1] == c[2] || c[2] == c[0]) {
				return false;
			}
			if (c[0] > c[2]) {
				return false;
			}
			if ((c[0] < c[1] && c[1] < c[2]) || (c[2] < c[1] && c[1] < c[0])) {
				return false;
			}

		}
		return true;
	}

	private static void swap(int[] c, int i, int j) {
		int tmp = c[i];
		c[i] = c[j];
		c[j] = tmp;
	}
}
0