結果

問題 No.182 新規性の虜
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-04-23 18:09:41
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 832 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 78,448 KB
最終ジャッジ日時 2024-07-05 00:31:36
合計ジャッジ時間 33,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,032 KB
testcase_01 AC 122 ms
53,820 KB
testcase_02 AC 113 ms
52,728 KB
testcase_03 AC 131 ms
54,384 KB
testcase_04 AC 126 ms
54,188 KB
testcase_05 AC 132 ms
54,028 KB
testcase_06 AC 126 ms
53,696 KB
testcase_07 AC 135 ms
54,020 KB
testcase_08 AC 2,260 ms
69,272 KB
testcase_09 TLE -
testcase_10 AC 4,190 ms
69,396 KB
testcase_11 AC 2,915 ms
69,020 KB
testcase_12 AC 1,115 ms
69,176 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 128 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 130 ms
54,168 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main
{
    private final static Main main = new Main();

    public static void main(String[] args)
    {
        long l = System.currentTimeMillis();
        main.solve();
        //System.out.println("処理時間:" + (System.currentTimeMillis() - l));
    }

    private void solve()
    {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        List<Integer> list = new ArrayList<Integer>();
        for(int i=0; i<n; ++i)
        {
            int in = sc.nextInt();
            if(list.contains(in))
            {
                list.remove((Integer) in);
            }
            else
            {
                list.add(in);
            }
        }
        System.out.println(list.size());
    }
}
0