結果

問題 No.182 新規性の虜
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 18:16:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 562 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 3,048 ms
コンパイル使用メモリ 89,988 KB
実行使用メモリ 53,308 KB
最終ジャッジ日時 2024-06-08 11:50:34
合計ジャッジ時間 12,490 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,236 KB
testcase_01 AC 109 ms
40,088 KB
testcase_02 AC 109 ms
40,096 KB
testcase_03 AC 115 ms
40,196 KB
testcase_04 AC 113 ms
40,424 KB
testcase_05 AC 123 ms
41,196 KB
testcase_06 AC 125 ms
41,084 KB
testcase_07 AC 129 ms
41,124 KB
testcase_08 AC 450 ms
51,936 KB
testcase_09 AC 562 ms
53,164 KB
testcase_10 AC 556 ms
52,288 KB
testcase_11 AC 507 ms
52,400 KB
testcase_12 AC 307 ms
49,004 KB
testcase_13 AC 121 ms
41,352 KB
testcase_14 AC 115 ms
40,160 KB
testcase_15 AC 124 ms
40,936 KB
testcase_16 AC 124 ms
41,296 KB
testcase_17 AC 124 ms
41,340 KB
testcase_18 AC 444 ms
48,728 KB
testcase_19 AC 382 ms
48,720 KB
testcase_20 AC 295 ms
48,052 KB
testcase_21 AC 483 ms
49,212 KB
testcase_22 AC 345 ms
48,556 KB
testcase_23 AC 123 ms
40,908 KB
testcase_24 AC 450 ms
53,308 KB
testcase_25 AC 450 ms
48,244 KB
testcase_26 AC 234 ms
46,928 KB
testcase_27 AC 121 ms
40,972 KB
evil01.txt AC 568 ms
54,096 KB
evil02.txt AC 489 ms
55,032 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