結果

問題 No.360 増加門松列
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-04-25 09:15:18
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 57,828 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 12:47:00
合計ジャッジ時間 7,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
6,816 KB
testcase_01 AC 411 ms
6,940 KB
testcase_02 AC 23 ms
6,944 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 419 ms
6,944 KB
testcase_05 AC 415 ms
6,940 KB
testcase_06 AC 424 ms
6,940 KB
testcase_07 AC 423 ms
6,940 KB
testcase_08 AC 421 ms
6,940 KB
testcase_09 AC 428 ms
6,944 KB
testcase_10 AC 70 ms
6,940 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 413 ms
6,944 KB
testcase_13 AC 48 ms
6,944 KB
testcase_14 AC 46 ms
6,940 KB
testcase_15 AC 416 ms
6,940 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 39 ms
6,944 KB
testcase_18 AC 415 ms
6,940 KB
testcase_19 AC 425 ms
6,940 KB
testcase_20 AC 416 ms
6,944 KB
testcase_21 AC 415 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

using namespace std;

bool jud(int a,int b,int c){
	return a<c&&a!=b&&b!=c&&a!=c&&(min(a,min(b,c))==b||max(a,max(b,c))==b);
}

int main(){

	int D[7];

	for(int i=0;i<7;i++) cin>>D[i];

	for(int i=123456;i<10000000;i++){
		int a[7];
		int b=i;
		for(int j=0;j<7;j++) a[6-j]=b%10,b/=10;
		bool f=true;
		for(int j=0;j<7;j++){
			if(a[j]<0||a[j]>6) f=false;
			for(int k=0;k<7;k++){
				if(j!=k&&a[k]==a[j]) f=false;
			}
		}
		if(f){
			f=true;
			for(int j=0;j<7-2;j++){
				if(!jud(D[a[j]],D[a[j+1]],D[a[j+2]])) f=false;
			}
			if(f){
				cout<<"YES"<<endl;

				return 0;
			}
		}
	}
	cout<<"NO"<<endl;
}
0