結果

問題 No.182 新規性の虜
ユーザー Eve_daodaEve_daoda
提出日時 2015-08-04 13:41:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 871 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 75,796 KB
実行使用メモリ 63,624 KB
最終ジャッジ日時 2024-07-18 01:14:07
合計ジャッジ時間 15,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,992 KB
testcase_01 AC 132 ms
54,032 KB
testcase_02 AC 139 ms
54,052 KB
testcase_03 AC 137 ms
54,208 KB
testcase_04 AC 134 ms
53,804 KB
testcase_05 AC 140 ms
54,140 KB
testcase_06 AC 135 ms
54,428 KB
testcase_07 AC 139 ms
54,336 KB
testcase_08 AC 580 ms
61,548 KB
testcase_09 AC 716 ms
61,664 KB
testcase_10 AC 681 ms
62,044 KB
testcase_11 AC 647 ms
61,892 KB
testcase_12 AC 453 ms
59,728 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 131 ms
54,112 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 137 ms
54,120 KB
testcase_24 AC 578 ms
63,624 KB
testcase_25 AC 560 ms
59,376 KB
testcase_26 AC 301 ms
58,756 KB
testcase_27 AC 131 ms
54,284 KB
evil01.txt AC 662 ms
66,072 KB
evil02.txt AC 666 ms
66,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
public class nn {
    public static int ans(int[] A){
        int cnt = 0;
        boolean flag = false;
        HashSet<Integer> cheack = new HashSet<Integer>();
        for(int now : A){
            if (!cheack.contains(now)) {
                cheack.add(now);
                cnt++;
                flag = true;
            }
            else {
                if (flag) {
                    cnt--;
                    flag = false;
                }
            }
        }
        
        if(cnt > 0) return cnt; else return 0;
    }
    
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int a[] = new int[N];
        for (int i = 0; i < N; i++) {
            a[i] = sc.nextInt();
        }
        System.out.println(ans(a));
    }
}
0