結果

問題 No.6 使いものにならないハッシュ
ユーザー tentententen
提出日時 2020-11-26 18:30:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 1,316 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 77,928 KB
実行使用メモリ 43,052 KB
最終ジャッジ日時 2024-09-16 17:00:04
合計ジャッジ時間 8,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,060 KB
testcase_01 AC 130 ms
41,072 KB
testcase_02 AC 175 ms
41,932 KB
testcase_03 AC 159 ms
41,612 KB
testcase_04 AC 153 ms
41,204 KB
testcase_05 AC 166 ms
41,292 KB
testcase_06 AC 176 ms
41,676 KB
testcase_07 AC 168 ms
41,784 KB
testcase_08 AC 165 ms
41,780 KB
testcase_09 AC 148 ms
41,356 KB
testcase_10 AC 125 ms
41,068 KB
testcase_11 AC 156 ms
41,220 KB
testcase_12 AC 173 ms
42,188 KB
testcase_13 AC 154 ms
41,344 KB
testcase_14 AC 136 ms
40,900 KB
testcase_15 AC 177 ms
41,840 KB
testcase_16 AC 170 ms
41,816 KB
testcase_17 AC 181 ms
41,692 KB
testcase_18 AC 179 ms
43,052 KB
testcase_19 AC 170 ms
42,040 KB
testcase_20 AC 160 ms
42,104 KB
testcase_21 AC 134 ms
41,132 KB
testcase_22 AC 135 ms
42,200 KB
testcase_23 AC 150 ms
42,452 KB
testcase_24 AC 153 ms
41,896 KB
testcase_25 AC 153 ms
41,768 KB
testcase_26 AC 161 ms
42,008 KB
testcase_27 AC 144 ms
41,872 KB
testcase_28 AC 157 ms
41,696 KB
testcase_29 AC 181 ms
42,636 KB
testcase_30 AC 173 ms
42,084 KB
testcase_31 AC 167 ms
42,308 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();
		HashSet<Integer> used = new HashSet<>();
		ArrayDeque<Integer> deq = new ArrayDeque<>();
		int max = 0;
		int ans = 0;
		boolean[] isNotPrime = new boolean[n + 1];
		for (int i = 2; i <= n; i++) {
		    if (!isNotPrime[i]) {
    	        for (int j = 2; j * i <= n; j++) {
    	            isNotPrime[j * i] = true;
    	        }
    	        if (i < k) {
    	            continue;
    	        }
		        int h = hash(i);
		        if (used.contains(h)) {
		            while (deq.size() > 0) {
		                int x = deq.poll();
		                if (hash(x) == h) {
		                    break;
		                }
		                used.remove(hash(x));
		            }
		        }
		        used.add(h);
    	        deq.add(i);
    	        if (max <= deq.size()) {
    	            max = deq.size();
    	            ans = deq.getFirst();
    	        }
		    }
		}
        System.out.println(ans);
	}
	
	static int hash(int x) {
	    if (x < 10) {
	        return x;
	    } else {
	        int sum = 0;
	        while (x > 0) {
	            sum += x % 10;
	            x /= 10;
	        }
	        return hash(sum);
	    }
	}
}

0