結果

問題 No.6 使いものにならないハッシュ
ユーザー tentententen
提出日時 2023-01-25 18:53:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 2,933 bytes
コンパイル時間 2,533 ms
コンパイル使用メモリ 94,148 KB
実行使用メモリ 53,364 KB
最終ジャッジ日時 2023-09-09 04:37:45
合計ジャッジ時間 7,171 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,340 KB
testcase_01 AC 42 ms
49,424 KB
testcase_02 AC 97 ms
52,512 KB
testcase_03 AC 57 ms
51,448 KB
testcase_04 AC 62 ms
51,484 KB
testcase_05 AC 77 ms
51,580 KB
testcase_06 AC 94 ms
51,528 KB
testcase_07 AC 82 ms
51,492 KB
testcase_08 AC 85 ms
51,872 KB
testcase_09 AC 67 ms
50,536 KB
testcase_10 AC 42 ms
49,304 KB
testcase_11 AC 59 ms
50,744 KB
testcase_12 AC 93 ms
52,860 KB
testcase_13 AC 67 ms
51,488 KB
testcase_14 AC 68 ms
51,484 KB
testcase_15 AC 96 ms
52,264 KB
testcase_16 AC 87 ms
51,932 KB
testcase_17 AC 91 ms
52,484 KB
testcase_18 AC 100 ms
51,836 KB
testcase_19 AC 100 ms
52,184 KB
testcase_20 AC 97 ms
51,696 KB
testcase_21 AC 52 ms
49,416 KB
testcase_22 AC 89 ms
51,620 KB
testcase_23 AC 92 ms
52,508 KB
testcase_24 AC 95 ms
53,084 KB
testcase_25 AC 81 ms
51,480 KB
testcase_26 AC 104 ms
52,296 KB
testcase_27 AC 93 ms
52,452 KB
testcase_28 AC 77 ms
51,392 KB
testcase_29 AC 97 ms
53,364 KB
testcase_30 AC 101 ms
51,588 KB
testcase_31 AC 89 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int k = sc.nextInt();
        int n = sc.nextInt();
        boolean[] isNotPrimes = new boolean[n + 1];
        isNotPrimes[1] = true;
        ArrayList<Integer> primes = new ArrayList<>();
        for (int i = 2; i <= n; i++) {
            if (!isNotPrimes[i]) {
                if (i >= k) {
                    primes.add(i);
                }
                for (int j = 2; j * i <= n; j++) {
                    isNotPrimes[j * i] = true;
                }
            }
        }
        int left = 0;
        HashSet<Integer> exists = new HashSet<>();
        int max = 0;
        int ans = 0;
        for (int i = 0; i < primes.size(); i++) {
            int hash = getHash(primes.get(i));
            if (exists.contains(hash)) {
                while (true) {
                    int tmp = getHash(primes.get(left));
                    if (tmp == hash) {
                        left++;
                        break;
                    }
                    exists.remove(tmp);
                    left++;
                }
            } else {
                exists.add(hash);
            }
            if (max <= exists.size()) {
                max = exists.size();
                ans = primes.get(left);
            }
        }
        System.out.println(ans);
    }
    
    static int getHash(int x) {
        if (x < 10) {
            return x;
        }
        int ans = 0;
        while (x > 0) {
            ans += x % 10;
            x /= 10;
        }
        return getHash(ans);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0