結果
| 問題 |
No.360 増加門松列
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-04-18 00:05:18 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 995 bytes |
| コンパイル時間 | 1,915 ms |
| コンパイル使用メモリ | 77,952 KB |
| 実行使用メモリ | 54,304 KB |
| 最終ジャッジ日時 | 2024-10-04 11:13:14 |
| 合計ジャッジ時間 | 5,205 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 WA * 9 |
ソースコード
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);
int count=1;
int countM=1;
int countc=0;
for(int i=0;i<6;i++){
if(d[i]==d[i+1]){
count++;
countM=Math.max(countM, count);
}else{
if(count>1)countc++;
count=1;
}
}
if(count>1)countc++;
// System.out.println(countc);
if(countc>=3){
System.out.println("NO");
return;
}
// if(countc==2){
// if((d[0]==d[1]&&d[2]==d[3])||(d[5]==d[6]&&d[3]==d[4])){
// System.out.println("NO");
// return;
// }
// }
if(countM>=3){
if(countM==3){
if(d[2]==d[3]&&d[3]==d[4]){
if((d[1]!=d[0])||(d[5]!=d[6])){
System.out.println("YES");
return;
}
}
}
System.out.println("NO");
return;
}
System.out.println("YES");
}
}