結果

問題 No.6 使いものにならないハッシュ
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 14:47:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 1,977 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 78,156 KB
実行使用メモリ 44,228 KB
最終ジャッジ日時 2024-09-16 16:28:33
合計ジャッジ時間 6,351 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,920 KB
testcase_01 AC 51 ms
37,032 KB
testcase_02 AC 121 ms
44,228 KB
testcase_03 AC 78 ms
39,072 KB
testcase_04 AC 97 ms
40,292 KB
testcase_05 AC 90 ms
40,712 KB
testcase_06 AC 107 ms
41,836 KB
testcase_07 AC 102 ms
40,644 KB
testcase_08 AC 108 ms
41,504 KB
testcase_09 AC 92 ms
40,124 KB
testcase_10 AC 50 ms
36,692 KB
testcase_11 AC 90 ms
39,260 KB
testcase_12 AC 114 ms
43,332 KB
testcase_13 AC 85 ms
39,200 KB
testcase_14 AC 93 ms
40,056 KB
testcase_15 AC 107 ms
42,308 KB
testcase_16 AC 105 ms
40,740 KB
testcase_17 AC 112 ms
44,116 KB
testcase_18 AC 114 ms
43,912 KB
testcase_19 AC 117 ms
43,900 KB
testcase_20 AC 114 ms
43,076 KB
testcase_21 AC 64 ms
37,400 KB
testcase_22 AC 111 ms
43,644 KB
testcase_23 AC 112 ms
43,432 KB
testcase_24 AC 117 ms
44,000 KB
testcase_25 AC 103 ms
40,892 KB
testcase_26 AC 117 ms
43,828 KB
testcase_27 AC 107 ms
42,540 KB
testcase_28 AC 106 ms
41,144 KB
testcase_29 AC 116 ms
44,216 KB
testcase_30 AC 121 ms
44,104 KB
testcase_31 AC 111 ms
43,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int K = Integer.parseInt(br.readLine());
        int N = Integer.parseInt(br.readLine());

        int sc = (int) Math.sqrt(N);

        int[] d = new int[N + 1];

        d[0] = -1;
        d[1] = -1;

        for (int i = 2; i <= sc; i++) {
            if (d[i] != 0) {
                continue;
            }
            for (int j = i; j < N; j++) {
                int dest = i * j;
                if (dest > d.length - 1) {
                    break;
                }
                d[i * j] = -1;
            }
        }

        int tmpMax = Integer.MIN_VALUE;
        int min = Integer.MAX_VALUE;

        int count = 0;

        for (int i = K; i <= N; i++) {
            if (d[i] == -1) {
                continue;
            }

            if (d[i] == 0) {
                d[i] = change(i);
            }

            HashMap<Integer, Integer> map = new HashMap();
            map.put(d[i], i);

            int j = i + 1;
            for (; j <= N; j++) {
                if (d[j] == -1) {
                    continue;
                } else if (d[j] == 0) {
                    d[j] = change(j);
                }

                if (map.containsKey(d[j])) {
                    break;
                } else {
                    tmpMax = j;
                    map.put(d[j], j);
                }
            }

            if (count <= map.size()) {
                count = map.size();
                min = i;
            }
        }

        System.out.println(min);
    }

    private static int change(int source) {

        if (source < 10) {
            return source;
        }
        int sum = 0;
        while (0 < source) {
            sum += source % 10;
            source /= 10;
        }
        return change(sum);
    }
}
0