結果

問題 No.182 新規性の虜
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 05:17:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 657 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 48,516 KB
最終ジャッジ日時 2024-12-27 11:01:04
合計ジャッジ時間 13,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,056 KB
testcase_01 AC 134 ms
41,052 KB
testcase_02 AC 134 ms
40,996 KB
testcase_03 AC 137 ms
41,032 KB
testcase_04 AC 134 ms
40,928 KB
testcase_05 AC 139 ms
41,120 KB
testcase_06 AC 116 ms
41,276 KB
testcase_07 AC 139 ms
41,296 KB
testcase_08 AC 577 ms
48,080 KB
testcase_09 AC 641 ms
48,408 KB
testcase_10 AC 624 ms
48,516 KB
testcase_11 AC 657 ms
48,104 KB
testcase_12 AC 459 ms
47,856 KB
testcase_13 AC 137 ms
41,160 KB
testcase_14 AC 137 ms
41,424 KB
testcase_15 AC 139 ms
41,352 KB
testcase_16 AC 137 ms
41,032 KB
testcase_17 AC 138 ms
41,224 KB
testcase_18 AC 597 ms
48,284 KB
testcase_19 AC 545 ms
48,012 KB
testcase_20 AC 455 ms
47,808 KB
testcase_21 AC 582 ms
48,356 KB
testcase_22 AC 487 ms
48,184 KB
testcase_23 AC 133 ms
41,032 KB
testcase_24 AC 542 ms
47,752 KB
testcase_25 AC 555 ms
48,456 KB
testcase_26 AC 310 ms
47,540 KB
testcase_27 AC 129 ms
39,980 KB
evil01.txt AC 601 ms
48,080 KB
evil02.txt AC 597 ms
48,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] A = new int [N+2];
        A[0] = 0;
        A[N+1] = Integer.MAX_VALUE;
        for(int i=1; i<=N; i++){
            A[i] = sc.nextInt();
        }
        Arrays.sort(A);
        int count = 0;
        for(int i=1; i<=N; i++){
            if(A[i]!=A[i-1] && A[i]!=A[i+1]){
                count++;
            }
        }
        System.out.println(count);
    }
}
0