結果

問題 No.6 使いものにならないハッシュ
ユーザー uafr_csuafr_cs
提出日時 2015-06-09 03:39:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 5,000 ms
コード長 1,922 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 89,648 KB
実行使用メモリ 47,316 KB
最終ジャッジ日時 2024-09-16 16:27:18
合計ジャッジ時間 8,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,992 KB
testcase_01 AC 103 ms
39,936 KB
testcase_02 AC 197 ms
47,316 KB
testcase_03 AC 153 ms
42,920 KB
testcase_04 AC 149 ms
42,404 KB
testcase_05 AC 164 ms
42,940 KB
testcase_06 AC 170 ms
44,220 KB
testcase_07 AC 165 ms
42,884 KB
testcase_08 AC 162 ms
43,272 KB
testcase_09 AC 163 ms
42,028 KB
testcase_10 AC 115 ms
40,296 KB
testcase_11 AC 156 ms
42,568 KB
testcase_12 AC 184 ms
46,952 KB
testcase_13 AC 144 ms
41,756 KB
testcase_14 AC 164 ms
42,220 KB
testcase_15 AC 165 ms
43,992 KB
testcase_16 AC 168 ms
43,092 KB
testcase_17 AC 169 ms
45,604 KB
testcase_18 AC 183 ms
46,208 KB
testcase_19 AC 195 ms
46,752 KB
testcase_20 AC 181 ms
45,280 KB
testcase_21 AC 152 ms
42,336 KB
testcase_22 AC 179 ms
46,100 KB
testcase_23 AC 177 ms
45,692 KB
testcase_24 AC 163 ms
45,332 KB
testcase_25 AC 164 ms
43,164 KB
testcase_26 AC 198 ms
46,352 KB
testcase_27 AC 195 ms
44,792 KB
testcase_28 AC 172 ms
43,776 KB
testcase_29 AC 205 ms
46,944 KB
testcase_30 AC 203 ms
47,304 KB
testcase_31 AC 196 ms
45,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {
	
	public static final int hash(int n){
		if(n < 10){
			return n;
		}else{
			int ret = 0;
			for(final char c : (n + "").toCharArray()){
				ret += Character.getNumericValue(c);
			}
			
			return hash(ret);
		}
	}
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int K = sc.nextInt();
		final int N = sc.nextInt();
		
		boolean[] is_prime = new boolean[N + 1];
		Arrays.fill(is_prime, true);
		is_prime[0] = is_prime[1] = false;
		LinkedList<Integer> primes = new LinkedList<Integer>();
		for(int p = 2; p <= N; p++){
			if(is_prime[p]){
				if(p >= K){
					primes.add(p);
				}
				
				for(int j = 2 * p; j <= N; j += p){
					is_prime[j] = false;
				}
			}
		}
		
		boolean[] hash_use = new boolean[10];
		LinkedList<Integer> hash_using = new LinkedList<Integer>();
		LinkedList<Integer> prime_using = new LinkedList<Integer>();
		
		int max_len = 1, min = Integer.MAX_VALUE;
		for(final int prime : primes){
			final int hash = hash(prime);
			
			if(hash_use[hash]){
				while(true){
					final int removed_prime = prime_using.poll();
					if(max_len <= hash_using.size()){
						max_len = hash_using.size();
						min = removed_prime;
					}
					
					final int removed_hash = hash_using.poll();
					hash_use[removed_hash] = false;

					
					if(removed_hash == hash){
						break;
					}
				}
			}
			
			hash_using.add(hash);
			prime_using.add(prime);
			hash_use[hash] = true;
			
			//System.out.println(hash + " : " + hash_using + "="  + prime_using + " " + prime + " " + min);
		}
		
		if(!hash_using.isEmpty() && max_len <= hash_using.size()){
			max_len = hash_using.size();
			min = prime_using.getFirst();
		}
		
		
		System.out.println(min);
	}
	
}
0