結果

問題 No.360 増加門松列
ユーザー 37zigen37zigen
提出日時 2016-04-18 01:30:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,610 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 78,188 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-10-04 12:51:39
合計ジャッジ時間 5,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 118 ms
54,376 KB
testcase_03 AC 113 ms
53,392 KB
testcase_04 WA -
testcase_05 AC 121 ms
53,960 KB
testcase_06 WA -
testcase_07 AC 123 ms
54,100 KB
testcase_08 WA -
testcase_09 AC 104 ms
53,080 KB
testcase_10 AC 115 ms
54,172 KB
testcase_11 AC 117 ms
54,272 KB
testcase_12 WA -
testcase_13 AC 98 ms
52,348 KB
testcase_14 AC 104 ms
53,176 KB
testcase_15 AC 113 ms
53,884 KB
testcase_16 AC 102 ms
53,048 KB
testcase_17 AC 115 ms
54,008 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 114 ms
53,400 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int[] d=new int[7];
		for(int i=0;i<7;i++){
			d[i]=sc.nextInt();
		}
		Arrays.sort(d);
		for(int i=0;i<7;i++){
			for(int j=0;j<7;j++){
				if(i==j)continue;
				for(int k=0;k<7;k++){
					if(k==i||k==j)continue;
					for(int l=0;l<7;l++){
						if(l==i||l==j||l==k)continue;
						for(int m=0;m<7;m++){
							if(m==i||m==j||m==k||m==l)continue;
							for(int n=0;n<7;n++){
								if(n==i||n==j||n==k||n==l||n==m)continue;
								for(int o=0;o<7;o++){
									if(o==i||o==j||o==k||o==l||o==m||o==n)continue;
									if(d[i]>d[j]&&d[j]<d[k]&&d[k]>d[l]&&d[l]<d[m]&&d[m]>d[n]&&d[n]<d[o]){
										if(d[i]!=d[j]&&d[i]!=d[k]&&
												d[j]!=d[k]&&d[j]!=d[l]&&
												d[k]!=d[l]&&d[k]!=d[m]&&
												d[l]!=d[m]&&d[l]!=d[n]&&
												d[m]!=d[n]&&d[m]!=d[o]&&
												d[n]!=d[o]){
											System.out.println("YES");
											return;
										}
									}
									if(d[i]<d[j]&&d[j]>d[k]&&d[k]<d[l]&&d[l]>d[m]&&d[m]<d[n]&&d[n]>d[o]){
										if(d[i]!=d[j]&&d[i]!=d[k]&&
												d[j]!=d[k]&&d[j]!=d[l]&&
												d[k]!=d[l]&&d[k]!=d[m]&&
												d[l]!=d[m]&&d[l]!=d[n]&&
												d[m]!=d[n]&&d[m]!=d[o]&&
												d[n]!=d[o]){
											System.out.println("YES");
											return;
										}
									}
								}
							}
						}
					}
				}
			}
		}
		System.out.println("NO");
	}
		void tr(Object...o){System.out.println(Arrays.deepToString(o));}
	}
0