結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー kuramubonnkuramubonn
提出日時 2023-02-03 20:12:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 63,780 KB
最終ジャッジ日時 2024-07-02 18:12:27
合計ジャッジ時間 10,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
45,024 KB
testcase_01 WA -
testcase_02 AC 146 ms
45,164 KB
testcase_03 AC 142 ms
45,380 KB
testcase_04 AC 129 ms
43,864 KB
testcase_05 WA -
testcase_06 AC 142 ms
44,888 KB
testcase_07 AC 144 ms
44,828 KB
testcase_08 AC 144 ms
45,464 KB
testcase_09 AC 139 ms
45,208 KB
testcase_10 AC 143 ms
45,136 KB
testcase_11 AC 143 ms
45,092 KB
testcase_12 AC 140 ms
44,860 KB
testcase_13 WA -
testcase_14 AC 132 ms
44,024 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 544 ms
51,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		Boolean [] flug = new Boolean [1000001];
		
		int num = sc.nextInt();int count = 0;
		
		for(int i = 0; i < flug.length ; i++) flug[i] = false;
		
		for(int i = 0; i < num ; i++) {
			int t = sc.nextInt();
			if(flug[t] == false) {
				flug[t] = true;
				count++;
			}
		}
		System.out.println(count);
	}
}
0