結果

問題 No.182 新規性の虜
ユーザー nCk_cvnCk_cv
提出日時 2015-04-20 12:25:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 58,044 KB
最終ジャッジ日時 2024-07-04 17:48:38
合計ジャッジ時間 15,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,140 KB
testcase_01 AC 128 ms
41,180 KB
testcase_02 AC 126 ms
41,104 KB
testcase_03 AC 129 ms
41,300 KB
testcase_04 AC 126 ms
41,404 KB
testcase_05 AC 124 ms
41,292 KB
testcase_06 AC 129 ms
41,180 KB
testcase_07 AC 129 ms
41,096 KB
testcase_08 AC 543 ms
48,684 KB
testcase_09 AC 657 ms
48,624 KB
testcase_10 AC 592 ms
48,568 KB
testcase_11 AC 580 ms
48,284 KB
testcase_12 AC 432 ms
48,264 KB
testcase_13 AC 128 ms
41,280 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 129 ms
41,244 KB
testcase_17 AC 117 ms
40,344 KB
testcase_18 AC 576 ms
48,600 KB
testcase_19 AC 491 ms
48,256 KB
testcase_20 AC 406 ms
48,244 KB
testcase_21 AC 590 ms
48,904 KB
testcase_22 AC 431 ms
48,340 KB
testcase_23 WA -
testcase_24 AC 502 ms
48,068 KB
testcase_25 AC 3,020 ms
58,044 KB
testcase_26 AC 289 ms
47,752 KB
testcase_27 AC 126 ms
41,224 KB
evil01.txt AC 505 ms
48,680 KB
evil02.txt AC 569 ms
48,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		
		int[] list = new int[n];
		for(int i = 0; i < n; i++) {
			list[i] = sc.nextInt();
		}
		
		Arrays.sort(list);
		int count = 0;
		for(int i = 0; i < n-1; i++) {
			if(list[i] != list[i+1] ){
				count++;
				if(i == n-2) {
				count++;
				}
			}
			else {
				for(int j = i+1; j < n; j++) {
					if(list[i] != list[j]) {
						i = j-1;
						break;
					}
				}
			}
		}
		
		System.out.println(count);
		
		
		
				
	}
}	


			
0