結果

問題 No.182 新規性の虜
ユーザー uafr_csuafr_cs
提出日時 2015-05-16 01:25:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 63,904 KB
最終ジャッジ日時 2024-07-06 04:39:29
合計ジャッジ時間 12,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 116 ms
54,148 KB
testcase_03 AC 122 ms
53,804 KB
testcase_04 AC 96 ms
52,700 KB
testcase_05 AC 113 ms
53,928 KB
testcase_06 AC 110 ms
53,976 KB
testcase_07 AC 105 ms
52,740 KB
testcase_08 AC 488 ms
61,464 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 110 ms
53,996 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 119 ms
54,080 KB
testcase_24 AC 495 ms
63,616 KB
testcase_25 WA -
testcase_26 AC 243 ms
58,636 KB
testcase_27 AC 110 ms
54,128 KB
evil01.txt AC 570 ms
63,456 KB
evil02.txt AC 579 ms
63,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		Set<Integer> set = new HashSet<Integer>();
		for(int i = 0; i < N; i++){
			set.add(sc.nextInt());
		}
		
		System.out.println(set.size());
		
	}
	
}
0