結果

問題 No.182 新規性の虜
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-31 16:32:37
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 720 bytes
コンパイル時間 3,239 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 60,592 KB
最終ジャッジ日時 2024-10-08 01:11:58
合計ジャッジ時間 14,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,888 KB
testcase_01 AC 127 ms
54,172 KB
testcase_02 AC 128 ms
54,080 KB
testcase_03 AC 115 ms
52,920 KB
testcase_04 AC 129 ms
54,136 KB
testcase_05 AC 130 ms
54,148 KB
testcase_06 AC 131 ms
53,716 KB
testcase_07 AC 134 ms
54,144 KB
testcase_08 AC 3,783 ms
60,592 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki182 {
	
	public static void main(String[] args ) {
		
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int a_array[] = new int[n];
		for (int i = 0; i < n ; i++ ) {
			a_array[i] = scan.nextInt();
		}
		scan.close();
		System.out.println(ansArray(a_array));
		
	}
	
	private static int ansArray(int[] arr) {
		int ans_array[] = new int[arr.length];
		
		for(int i = 0; i < arr.length; i++ ){
			
			for(int j = 0; j < arr.length; j++ ){
				
				if(arr[i] == arr[j]){
					ans_array[i]++;
				}
			}
		}
		int ans = 0;
		for(int i = 0; i < ans_array.length; i++ ){
			if(ans_array[i] == 1) {
				ans++;
			}
			
		}
		return ans;
	}
	
}
0