結果

問題 No.182 新規性の虜
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 15:10:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 64,544 KB
最終ジャッジ日時 2024-07-07 17:24:25
合計ジャッジ時間 29,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,892 KB
testcase_01 AC 96 ms
39,692 KB
testcase_02 AC 109 ms
40,928 KB
testcase_03 AC 109 ms
40,064 KB
testcase_04 AC 99 ms
39,916 KB
testcase_05 AC 102 ms
40,004 KB
testcase_06 AC 111 ms
41,184 KB
testcase_07 AC 105 ms
40,060 KB
testcase_08 AC 2,140 ms
58,224 KB
testcase_09 AC 4,609 ms
59,100 KB
testcase_10 AC 3,614 ms
58,376 KB
testcase_11 AC 2,840 ms
58,036 KB
testcase_12 AC 765 ms
48,460 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 107 ms
41,176 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 96 ms
39,904 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
evil01.txt -- -
evil02.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package coder;

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static int solve(int[] A){
		int count = 0;
		ArrayList<Integer> cheack = new ArrayList<Integer>();
		
		for(int now : A){
			if (cheack.contains(now)) {
				count--;
				continue;
			}
			else {
				cheack.add(now);
				count++;
			}
		}
		
		if(count > 0) return count; else return 0;
	}
	
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		int N = S.nextInt();
		int A[] = new int[N];

		for (int i = 0; i < N; i++) {
			A[i] = S.nextInt();
		}
		
		System.out.println(solve(A));
	}
}
0