結果

問題 No.182 新規性の虜
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-17 10:45:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 585 ms / 5,000 ms
コード長 757 bytes
コンパイル時間 1,952 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 49,456 KB
最終ジャッジ日時 2024-06-08 02:56:40
合計ジャッジ時間 11,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,960 KB
testcase_01 AC 118 ms
40,188 KB
testcase_02 AC 119 ms
41,492 KB
testcase_03 AC 109 ms
41,684 KB
testcase_04 AC 111 ms
39,900 KB
testcase_05 AC 118 ms
40,960 KB
testcase_06 AC 111 ms
41,480 KB
testcase_07 AC 123 ms
41,612 KB
testcase_08 AC 494 ms
48,272 KB
testcase_09 AC 555 ms
49,456 KB
testcase_10 AC 556 ms
48,880 KB
testcase_11 AC 537 ms
48,136 KB
testcase_12 AC 407 ms
47,968 KB
testcase_13 AC 110 ms
41,320 KB
testcase_14 AC 126 ms
41,440 KB
testcase_15 AC 118 ms
39,788 KB
testcase_16 AC 125 ms
41,152 KB
testcase_17 AC 122 ms
40,232 KB
testcase_18 AC 563 ms
48,468 KB
testcase_19 AC 446 ms
48,164 KB
testcase_20 AC 391 ms
47,944 KB
testcase_21 AC 585 ms
48,512 KB
testcase_22 AC 408 ms
47,904 KB
testcase_23 AC 106 ms
41,380 KB
testcase_24 AC 482 ms
48,272 KB
testcase_25 AC 430 ms
46,900 KB
testcase_26 AC 279 ms
47,880 KB
testcase_27 AC 111 ms
39,892 KB
evil01.txt AC 545 ms
48,540 KB
evil02.txt AC 504 ms
49,548 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();
        }
        if(n==1){
            System.out.println(1);
        }else{
            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