結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー uafr_csuafr_cs
提出日時 2015-08-12 00:56:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 3,775 ms
コンパイル使用メモリ 84,572 KB
実行使用メモリ 63,960 KB
最終ジャッジ日時 2024-06-12 22:30:26
合計ジャッジ時間 10,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 124 ms
54,384 KB
testcase_02 AC 115 ms
52,924 KB
testcase_03 AC 127 ms
54,260 KB
testcase_04 AC 131 ms
53,920 KB
testcase_05 WA -
testcase_06 AC 129 ms
54,028 KB
testcase_07 AC 127 ms
54,084 KB
testcase_08 AC 128 ms
53,940 KB
testcase_09 AC 130 ms
53,860 KB
testcase_10 AC 130 ms
53,904 KB
testcase_11 AC 128 ms
54,076 KB
testcase_12 AC 131 ms
53,880 KB
testcase_13 AC 129 ms
53,796 KB
testcase_14 AC 115 ms
52,680 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 555 ms
63,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int[] arr = new int[N];
		for(int i = 0; i < N; i++){
			arr[i] = sc.nextInt();
		}
		
		int max = 0;
		Map<Integer, Integer> map = new HashMap<Integer, Integer>();
		
		int left = 0;
		for(int i = 0; i < N; i++){
			if(map.containsKey(arr[i])){
				max = Math.max(max, i - left);
				left = map.get(arr[i]) + 1;
			}
			map.put(arr[i], i);
		}
		max = Math.max(max, N - left);
		
		System.out.println(max);
	}
	
}
0