結果

問題 No.6 使いものにならないハッシュ
ユーザー GrenacheGrenache
提出日時 2016-03-05 15:13:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 1,893 bytes
コンパイル時間 3,773 ms
コンパイル使用メモリ 79,632 KB
実行使用メモリ 47,244 KB
最終ジャッジ日時 2024-09-16 16:32:31
合計ジャッジ時間 10,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,536 KB
testcase_01 AC 129 ms
41,288 KB
testcase_02 AC 201 ms
46,236 KB
testcase_03 AC 168 ms
42,352 KB
testcase_04 AC 180 ms
42,376 KB
testcase_05 AC 182 ms
44,676 KB
testcase_06 AC 190 ms
44,136 KB
testcase_07 AC 183 ms
43,508 KB
testcase_08 AC 190 ms
44,260 KB
testcase_09 AC 180 ms
42,036 KB
testcase_10 AC 132 ms
41,268 KB
testcase_11 AC 174 ms
42,804 KB
testcase_12 AC 198 ms
46,036 KB
testcase_13 AC 158 ms
42,040 KB
testcase_14 AC 172 ms
42,360 KB
testcase_15 AC 190 ms
45,184 KB
testcase_16 AC 183 ms
44,540 KB
testcase_17 AC 188 ms
46,104 KB
testcase_18 AC 210 ms
46,652 KB
testcase_19 AC 197 ms
46,176 KB
testcase_20 AC 195 ms
44,936 KB
testcase_21 AC 169 ms
41,880 KB
testcase_22 AC 197 ms
46,224 KB
testcase_23 AC 199 ms
45,924 KB
testcase_24 AC 200 ms
47,244 KB
testcase_25 AC 181 ms
43,600 KB
testcase_26 AC 203 ms
46,080 KB
testcase_27 AC 190 ms
44,520 KB
testcase_28 AC 179 ms
43,304 KB
testcase_29 AC 207 ms
46,220 KB
testcase_30 AC 203 ms
46,404 KB
testcase_31 AC 203 ms
45,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.BitSet;
import java.util.List;
import java.util.Scanner;


public class Main_yukicoder6 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int k = sc.nextInt();
        int n = sc.nextInt();

        List<Integer> primes = new ArrayList<Integer>();

        BitSet sieve = new BitSet();

        if (k <= 2) {
        	primes.add(2);
        }

        for (int i = 1; 2 * i + 1 <= n; i++) {
        	if (!sieve.get(i)) {
        		int p = 2 * i + 1;
        		if (p >= k) {
        			primes.add(p);
        		}

        		for (int j = 1; (i + (2 * i + 1) * j) * 2 + 1 <= n; j++) {
        			sieve.set(i + (2 * i + 1) * j);
        		}
        	}
        }

        int[] prev = new int[10];
        Arrays.fill(prev, -1);
        List<Integer> dp = new ArrayList<Integer>();
        List<Integer> hash = new ArrayList<Integer>();

        int max = 0;
        int maxp = 0;
        for (int i = 0; i < primes.size(); i++) {
        	int p = primes.get(i);

        	String s = Integer.toString(p);
        	while (s.length() > 1) {
        		int sum = 0;
        		for (char c : s.toCharArray()) {
        			sum += c - '0';
        		}

        		s = Integer.toString(sum);
        	}

        	hash.add(Integer.parseInt(s));

        	int tmp = i - prev[hash.get(i)];
        	for (int j = dp.size() - 1; j >= 0 && j >= dp.size() - 10; j--) {
        		if (hash.get(j) == hash.get(i)) {
        			tmp = Math.min(tmp, i - j);
        		} else {
        			tmp = Math.min(tmp, dp.get(j) + i - j);
        		}
        	}

        	dp.add(tmp);
        	if (tmp >= max) {
        		max = Math.max(max, tmp);
        		maxp = primes.get(i - tmp + 1);
        	}
        }

//        System.out.println(max);
        System.out.println(maxp);

        sc.close();
    }
}
0