結果

問題 No.6 使いものにならないハッシュ
ユーザー htensaihtensai
提出日時 2020-01-15 10:45:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 2,357 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 45,612 KB
最終ジャッジ日時 2024-09-16 16:54:46
合計ジャッジ時間 9,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,160 KB
testcase_01 AC 136 ms
41,272 KB
testcase_02 AC 266 ms
45,612 KB
testcase_03 AC 159 ms
41,424 KB
testcase_04 AC 169 ms
41,444 KB
testcase_05 AC 197 ms
41,944 KB
testcase_06 AC 227 ms
43,852 KB
testcase_07 AC 173 ms
41,808 KB
testcase_08 AC 202 ms
42,064 KB
testcase_09 AC 161 ms
41,688 KB
testcase_10 AC 135 ms
41,216 KB
testcase_11 AC 163 ms
41,676 KB
testcase_12 AC 234 ms
43,940 KB
testcase_13 AC 152 ms
41,260 KB
testcase_14 AC 163 ms
41,728 KB
testcase_15 AC 219 ms
42,828 KB
testcase_16 AC 179 ms
41,832 KB
testcase_17 AC 242 ms
44,856 KB
testcase_18 AC 263 ms
45,424 KB
testcase_19 AC 239 ms
45,052 KB
testcase_20 AC 227 ms
44,104 KB
testcase_21 AC 156 ms
41,668 KB
testcase_22 AC 235 ms
44,532 KB
testcase_23 AC 229 ms
43,700 KB
testcase_24 AC 238 ms
44,484 KB
testcase_25 AC 198 ms
41,772 KB
testcase_26 AC 253 ms
45,080 KB
testcase_27 AC 233 ms
44,288 KB
testcase_28 AC 200 ms
42,156 KB
testcase_29 AC 254 ms
45,452 KB
testcase_30 AC 246 ms
44,248 KB
testcase_31 AC 241 ms
44,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int k = sc.nextInt();
        int n = sc.nextInt();
        Prime[] used = new Prime[10];
        TreeSet<Prime> primes = new TreeSet<Prime>();
        int max = 0;
        int maxNumber = 0;
        for (int i = k; i <= n; i++) {
            if (!isPrime(i)) {
                continue;
            }
            Prime p = new Prime(i);
            if (used[p.hashCode()] == null) {
                used[p.hashCode()] = p;
                primes.add(p);
            } else {
                Prime x = used[p.hashCode()];
                used[p.hashCode()] = null;
                while (primes.lower(x) != null) {
                    Prime tmp = primes.lower(x);
                    primes.remove(x);
                    x = tmp;
                    used[x.hashCode()] = null;
                }
                primes.remove(x);
                used[p.hashCode()] = p;
                primes.add(p);
            }
            if (max <= primes.size()) {
                max = primes.size();
                maxNumber = primes.first().number;
            }
        }
        System.out.println(maxNumber);
    }
    
    static class Prime implements Comparable<Prime> {
        int number;
        int hash;
        
        public Prime(int number) {
            this.number = number;
            this.hash = getHash(number);
        }
        
        public int hashCode() {
            return hash;
        }
        
        public boolean equals(Object o) {
            Prime another = (Prime) o;
            return number == another.number;
        }
        
        public int compareTo(Prime another) {
            return number - another.number;
        }
        
        private int getHash(int x) {
            while (x >= 10) {
                int y = x;
                x = 0;
                while (y > 0) {
                    x += y % 10;
                    y /= 10;
                }
            }
            return x;
        }
    }
    
    static boolean isPrime(int x) {
        if (x < 2) {
            return false;
        }
        for (int i = 2; i <= Math.sqrt(x); i++) {
            if (x % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0