結果

問題 No.182 新規性の虜
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-16 23:27:16
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 616 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 59,852 KB
最終ジャッジ日時 2024-07-04 15:07:33
合計ジャッジ時間 13,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,172 KB
testcase_01 AC 122 ms
54,116 KB
testcase_02 AC 131 ms
54,028 KB
testcase_03 AC 131 ms
54,540 KB
testcase_04 AC 129 ms
54,228 KB
testcase_05 AC 132 ms
54,288 KB
testcase_06 AC 119 ms
53,140 KB
testcase_07 AC 133 ms
54,512 KB
testcase_08 AC 538 ms
59,292 KB
testcase_09 AC 678 ms
59,852 KB
testcase_10 AC 609 ms
59,420 KB
testcase_11 AC 615 ms
59,484 KB
testcase_12 AC 422 ms
59,512 KB
testcase_13 AC 131 ms
54,172 KB
testcase_14 AC 137 ms
54,088 KB
testcase_15 RE -
testcase_16 AC 132 ms
54,108 KB
testcase_17 AC 135 ms
54,064 KB
testcase_18 AC 597 ms
59,460 KB
testcase_19 AC 516 ms
59,352 KB
testcase_20 AC 442 ms
59,724 KB
testcase_21 AC 618 ms
59,728 KB
testcase_22 AC 462 ms
59,284 KB
testcase_23 RE -
testcase_24 AC 524 ms
59,120 KB
testcase_25 AC 537 ms
59,192 KB
testcase_26 AC 301 ms
59,028 KB
testcase_27 AC 127 ms
53,964 KB
evil01.txt AC 568 ms
59,452 KB
evil02.txt AC 592 ms
59,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[] a = new int[n];
        for(int i=0; i<n; i++){
            a[i]=koko.nextInt();
        }
        Arrays.sort(a);
        int count=0;
        if(a[0]!=a[1]){
            count=1;
        }
        for(int i=1; i<n-1; i++){
            if(a[i]!=a[i-1]&&a[i]!=a[i+1]){
                count++;
            }
        }
        if(a[n-1]!=a[n-2]){
            count++;
        }
        System.out.println(count);
    }
}
0