結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,896 KB
testcase_01 AC 106 ms
40,312 KB
testcase_02 AC 112 ms
41,144 KB
testcase_03 AC 104 ms
40,116 KB
testcase_04 AC 118 ms
41,024 KB
testcase_05 AC 119 ms
41,044 KB
testcase_06 AC 109 ms
40,148 KB
testcase_07 AC 116 ms
41,132 KB
testcase_08 AC 450 ms
46,960 KB
testcase_09 AC 574 ms
48,676 KB
testcase_10 AC 544 ms
48,400 KB
testcase_11 AC 513 ms
48,424 KB
testcase_12 AC 374 ms
48,188 KB
testcase_13 AC 120 ms
41,300 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 104 ms
40,036 KB
testcase_17 AC 110 ms
40,608 KB
testcase_18 AC 535 ms
48,552 KB
testcase_19 AC 457 ms
48,156 KB
testcase_20 AC 395 ms
48,212 KB
testcase_21 AC 553 ms
48,544 KB
testcase_22 AC 394 ms
48,132 KB
testcase_23 WA -
testcase_24 AC 479 ms
48,216 KB
testcase_25 AC 2,788 ms
58,112 KB
testcase_26 AC 254 ms
47,820 KB
testcase_27 AC 112 ms
41,224 KB
evil01.txt AC 468 ms
49,048 KB
evil02.txt AC 511 ms
48,476 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;
						if(i == n-1) {
							count++;
						}
						break;
					}
				}
			}
		}
		
		System.out.println(count);
		
		
		
				
	}
}	


			
0