結果

問題 No.182 新規性の虜
ユーザー FVRChanFVRChan
提出日時 2017-09-29 09:55:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 726 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 60,836 KB
最終ジャッジ日時 2024-06-08 12:24:29
合計ジャッジ時間 14,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,112 KB
testcase_01 AC 121 ms
40,956 KB
testcase_02 AC 125 ms
41,196 KB
testcase_03 AC 122 ms
41,100 KB
testcase_04 AC 118 ms
40,744 KB
testcase_05 AC 111 ms
40,156 KB
testcase_06 AC 110 ms
40,208 KB
testcase_07 AC 113 ms
40,180 KB
testcase_08 AC 569 ms
52,828 KB
testcase_09 AC 726 ms
56,708 KB
testcase_10 AC 628 ms
55,048 KB
testcase_11 AC 602 ms
54,468 KB
testcase_12 AC 434 ms
50,472 KB
testcase_13 AC 116 ms
40,496 KB
testcase_14 AC 128 ms
41,236 KB
testcase_15 AC 121 ms
41,052 KB
testcase_16 AC 124 ms
40,944 KB
testcase_17 AC 127 ms
41,180 KB
testcase_18 AC 556 ms
49,320 KB
testcase_19 AC 479 ms
49,456 KB
testcase_20 AC 432 ms
49,060 KB
testcase_21 AC 570 ms
49,332 KB
testcase_22 AC 471 ms
49,352 KB
testcase_23 AC 111 ms
39,932 KB
testcase_24 AC 616 ms
60,836 KB
testcase_25 AC 568 ms
48,184 KB
testcase_26 AC 292 ms
47,972 KB
testcase_27 AC 112 ms
40,092 KB
evil01.txt AC 670 ms
62,272 KB
evil02.txt AC 697 ms
62,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.LinkedList;
import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		int n=Integer.parseInt(sc.nextLine());
		HashMap<Integer,Integer>map=new HashMap<Integer,Integer>();
		LinkedList<Integer>queue=new LinkedList<Integer>();
		for(int i=0;i<n;i++){
			int temp=sc.nextInt();
			if(!map.containsKey(temp)){
				map.put(temp,1);
				queue.offer(temp);
			}else{
				map.put(temp,map.get(temp)+1);
			}
		}int counter=0;
		for(Integer element:queue){
			if(map.get(element) == 1){
				counter++;
			}
		}System.out.println(counter);
	}
}
0