結果
問題 | No.360 増加門松列 |
ユーザー | 37zigen |
提出日時 | 2016-04-17 23:06:27 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 2,080 ms |
コンパイル使用メモリ | 74,520 KB |
実行使用メモリ | 41,864 KB |
最終ジャッジ日時 | 2024-10-04 10:48:59 |
合計ジャッジ時間 | 4,875 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 102 ms
41,500 KB |
testcase_03 | AC | 108 ms
41,656 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 115 ms
41,588 KB |
testcase_10 | AC | 117 ms
41,184 KB |
testcase_11 | AC | 102 ms
41,140 KB |
testcase_12 | WA | - |
testcase_13 | AC | 109 ms
40,328 KB |
testcase_14 | AC | 114 ms
41,864 KB |
testcase_15 | AC | 101 ms
40,328 KB |
testcase_16 | AC | 111 ms
41,268 KB |
testcase_17 | AC | 114 ms
41,452 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 108 ms
41,432 KB |
testcase_21 | WA | - |
ソースコード
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; for(int i=0;i<6;i++){ if(d[i]==d[i+1]){ count++; countM=Math.max(countM, count); }else{ count=0; } } if(countM>=3){ System.out.println("NO"); }else{ System.out.println("YES"); } } }