結果

問題 No.182 新規性の虜
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 18:16:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 712 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 5,755 ms
コンパイル使用メモリ 89,032 KB
実行使用メモリ 53,256 KB
最終ジャッジ日時 2024-12-27 17:59:44
合計ジャッジ時間 14,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,020 KB
testcase_01 AC 138 ms
40,932 KB
testcase_02 AC 146 ms
40,916 KB
testcase_03 AC 146 ms
41,044 KB
testcase_04 AC 143 ms
41,268 KB
testcase_05 AC 144 ms
41,032 KB
testcase_06 AC 131 ms
40,084 KB
testcase_07 AC 145 ms
41,040 KB
testcase_08 AC 549 ms
51,468 KB
testcase_09 AC 712 ms
52,732 KB
testcase_10 AC 594 ms
52,660 KB
testcase_11 AC 613 ms
52,384 KB
testcase_12 AC 370 ms
48,936 KB
testcase_13 AC 128 ms
40,020 KB
testcase_14 AC 151 ms
41,148 KB
testcase_15 AC 138 ms
40,972 KB
testcase_16 AC 136 ms
41,060 KB
testcase_17 AC 126 ms
39,836 KB
testcase_18 AC 520 ms
48,488 KB
testcase_19 AC 438 ms
48,548 KB
testcase_20 AC 325 ms
47,724 KB
testcase_21 AC 546 ms
48,868 KB
testcase_22 AC 385 ms
48,296 KB
testcase_23 AC 124 ms
39,896 KB
testcase_24 AC 510 ms
53,256 KB
testcase_25 AC 513 ms
47,796 KB
testcase_26 AC 276 ms
46,984 KB
testcase_27 AC 139 ms
40,908 KB
evil01.txt AC 681 ms
53,420 KB
evil02.txt AC 656 ms
53,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.IntStream;
class M{
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	public static void main(String[]$){
		HashMap<Integer,Integer>hm=new HashMap<>();
		INS(getInt()).forEach(i->hm.merge(i,1,Integer::sum));
		System.out.println(
				hm.values().stream()
				.filter(i->i==1)
				.count()
				);
	}
}
0