結果

問題 No.182 新規性の虜
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 05:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 554 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 48,380 KB
最終ジャッジ日時 2024-06-08 09:24:01
合計ジャッジ時間 12,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,320 KB
testcase_01 AC 106 ms
41,024 KB
testcase_02 AC 117 ms
41,008 KB
testcase_03 AC 112 ms
40,936 KB
testcase_04 AC 98 ms
40,084 KB
testcase_05 AC 111 ms
41,064 KB
testcase_06 AC 109 ms
40,968 KB
testcase_07 AC 113 ms
41,160 KB
testcase_08 AC 479 ms
48,144 KB
testcase_09 AC 554 ms
48,376 KB
testcase_10 AC 519 ms
48,380 KB
testcase_11 AC 472 ms
46,764 KB
testcase_12 AC 381 ms
47,868 KB
testcase_13 AC 100 ms
40,264 KB
testcase_14 AC 107 ms
40,972 KB
testcase_15 AC 107 ms
41,216 KB
testcase_16 AC 109 ms
41,032 KB
testcase_17 AC 111 ms
41,308 KB
testcase_18 AC 519 ms
48,332 KB
testcase_19 AC 394 ms
47,976 KB
testcase_20 AC 345 ms
46,584 KB
testcase_21 AC 473 ms
48,336 KB
testcase_22 AC 382 ms
47,844 KB
testcase_23 AC 104 ms
39,812 KB
testcase_24 AC 440 ms
47,336 KB
testcase_25 AC 452 ms
48,180 KB
testcase_26 AC 255 ms
47,484 KB
testcase_27 AC 95 ms
40,072 KB
evil01.txt AC 489 ms
48,200 KB
evil02.txt AC 532 ms
48,464 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