結果

問題 No.6 使いものにならないハッシュ
ユーザー spaciaspacia
提出日時 2015-12-30 01:35:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 1,608 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 78,100 KB
実行使用メモリ 39,336 KB
最終ジャッジ日時 2024-09-16 16:31:14
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,380 KB
testcase_01 AC 46 ms
36,684 KB
testcase_02 AC 98 ms
39,304 KB
testcase_03 AC 56 ms
36,848 KB
testcase_04 AC 72 ms
38,428 KB
testcase_05 AC 78 ms
38,024 KB
testcase_06 AC 83 ms
38,720 KB
testcase_07 AC 80 ms
38,632 KB
testcase_08 AC 81 ms
38,664 KB
testcase_09 AC 68 ms
39,084 KB
testcase_10 AC 45 ms
36,384 KB
testcase_11 AC 72 ms
37,924 KB
testcase_12 AC 93 ms
38,996 KB
testcase_13 AC 71 ms
38,124 KB
testcase_14 AC 65 ms
38,636 KB
testcase_15 AC 92 ms
38,956 KB
testcase_16 AC 90 ms
39,140 KB
testcase_17 AC 92 ms
39,008 KB
testcase_18 AC 86 ms
38,936 KB
testcase_19 AC 85 ms
39,176 KB
testcase_20 AC 92 ms
38,804 KB
testcase_21 AC 52 ms
36,964 KB
testcase_22 AC 96 ms
39,336 KB
testcase_23 AC 94 ms
39,064 KB
testcase_24 AC 98 ms
39,100 KB
testcase_25 AC 84 ms
38,784 KB
testcase_26 AC 91 ms
39,164 KB
testcase_27 AC 92 ms
38,952 KB
testcase_28 AC 81 ms
38,208 KB
testcase_29 AC 97 ms
39,304 KB
testcase_30 AC 98 ms
39,084 KB
testcase_31 AC 80 ms
38,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main6 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static int hash (int p) {
		int ret = 0;
		while (p != 0) {
			ret += p % 10;
			p /= 10;
		}
		return ret < 10 ? ret : hash(ret);
	}
	
	public static boolean[] sieve (int n) {
		boolean[] ret = new boolean[n + 1];
		
		Arrays.fill(ret , true);
		ret[1] = false;
		for (int i = 4; i <= n; i += 2) ret[i] = false;
		for (int i = 3; i * i <= n; i += 2) {
			for (int j = 3; i * j <= n; j += 2) {
				ret[i * j] = false;
			}
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int k = Integer.parseInt(br.readLine());
		int n = Integer.parseInt(br.readLine());
		boolean[] isPrime = sieve(n);
		int[] hashes = new int[n + 1];
		
		//out("Prime---");
		for (int i = k; i <= n; i++) {
			if (!isPrime[i]) continue;
			hashes[i] = hash(i);
			//out(i + "\thash(i) = " + hashes[i]);
		}
		//out("---");
		
		int startP = 0;
		int ans = 0;
		int maxLen = 0;
		ArrayList<Integer> list = new ArrayList<Integer>();
		
		for (int i = k; i <= n; i++) {
			if (!isPrime[i]) continue;
			startP = i;
			list.add(hashes[i]);
			for (int j = i + 1; j <= n; j++) {
				if (!isPrime[j]) continue;
				if (!list.contains(hashes[j])) {
					list.add(hashes[j]);
					continue;
				}
				break;
			}
			if (maxLen <= list.size()) {
				maxLen = list.size();
				ans = startP;
				//out("ans更新 : " + ans);
			}
			list.clear();
		}
		
		out(ans);
		
	}
}
0