結果

問題 No.360 増加門松列
ユーザー nCk_cvnCk_cv
提出日時 2016-04-20 18:53:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2024-06-06 12:46:46
合計ジャッジ時間 5,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,008 KB
testcase_01 AC 125 ms
54,000 KB
testcase_02 AC 113 ms
53,444 KB
testcase_03 AC 109 ms
53,836 KB
testcase_04 AC 111 ms
53,820 KB
testcase_05 AC 115 ms
54,176 KB
testcase_06 AC 124 ms
54,112 KB
testcase_07 AC 124 ms
54,088 KB
testcase_08 AC 111 ms
54,004 KB
testcase_09 AC 128 ms
54,036 KB
testcase_10 AC 128 ms
54,080 KB
testcase_11 AC 113 ms
53,820 KB
testcase_12 AC 125 ms
54,352 KB
testcase_13 AC 102 ms
52,756 KB
testcase_14 AC 116 ms
54,112 KB
testcase_15 AC 99 ms
52,936 KB
testcase_16 AC 102 ms
54,260 KB
testcase_17 AC 113 ms
53,952 KB
testcase_18 AC 119 ms
53,896 KB
testcase_19 AC 131 ms
54,308 KB
testcase_20 AC 130 ms
56,060 KB
testcase_21 AC 128 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.awt.geom.*;
import java.io.*;
import java.math.*;
 
class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter out = new PrintWriter(System.out);
		int[] in = new int[7];
		for(int i = 0; i < 7; i++) {
			in[i] = sc.nextInt();
		}
		boolean ans = dfs(0,new int[7],new boolean[7],in);
		
		if(ans) System.out.println("YES");
		else System.out.println("NO");
	}
	static boolean check(int a, int b, int c) {
		return a != b && b != c && a != c &&  ((a < b && c < b) || (a > b && c > b));
	}
	static boolean check2(int a, int b, int c) {
		return check(a,b,c) && a < c;	
	}
	static boolean check3(int[] a) {
		for(int i = 0; i < 5; i++) {
			if(!check2(a[i],a[i+1],a[i+2])) return false;
		}
		return true;
	}
	static boolean dfs(int id, int[] a, boolean [] b, int[] c) {
		if(id == 7) return check3(a);
		for(int i = 0; i < 7; i++) {
			if(b[i]) continue;
			b[i] = true;
			a[id] = c[i];
			if(dfs(id+1,a,b,c)) return true;
			a[id] = 0;
			b[i] = false;
		}
		return false;
	}
 
	
}
0