結果

問題 No.6 使いものにならないハッシュ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-02-12 00:25:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 5,000 ms
コード長 1,622 bytes
コンパイル時間 3,567 ms
コンパイル使用メモリ 82,676 KB
実行使用メモリ 42,636 KB
最終ジャッジ日時 2024-09-16 16:31:49
合計ジャッジ時間 9,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,208 KB
testcase_01 AC 131 ms
41,468 KB
testcase_02 AC 177 ms
42,112 KB
testcase_03 AC 152 ms
41,760 KB
testcase_04 AC 160 ms
41,736 KB
testcase_05 AC 166 ms
41,112 KB
testcase_06 AC 182 ms
42,200 KB
testcase_07 AC 156 ms
41,304 KB
testcase_08 AC 177 ms
42,008 KB
testcase_09 AC 157 ms
41,436 KB
testcase_10 AC 150 ms
41,196 KB
testcase_11 AC 154 ms
41,716 KB
testcase_12 AC 185 ms
42,000 KB
testcase_13 AC 157 ms
41,320 KB
testcase_14 AC 146 ms
41,212 KB
testcase_15 AC 174 ms
41,848 KB
testcase_16 AC 182 ms
41,928 KB
testcase_17 AC 166 ms
41,968 KB
testcase_18 AC 187 ms
42,636 KB
testcase_19 AC 156 ms
41,528 KB
testcase_20 AC 151 ms
41,976 KB
testcase_21 AC 135 ms
40,536 KB
testcase_22 AC 172 ms
42,032 KB
testcase_23 AC 184 ms
42,540 KB
testcase_24 AC 170 ms
42,252 KB
testcase_25 AC 171 ms
41,580 KB
testcase_26 AC 181 ms
42,288 KB
testcase_27 AC 196 ms
42,024 KB
testcase_28 AC 184 ms
41,948 KB
testcase_29 AC 207 ms
42,340 KB
testcase_30 AC 173 ms
41,696 KB
testcase_31 AC 185 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No006 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static int hash(int p) {
		int sum = 0;
		while (p > 0) {
			sum += p%10;
			p /= 10;
		}
		return sum < 10 ? sum : hash(sum);
	}

	static void solve() {
		int k = in.nextInt();
		int n = in.nextInt();

		BitSet isp = new BitSet();
		isp.set(2, n+1, true);
		for (int i=2; i*i<=n; i=isp.nextSetBit(i+1)) {
			for (int j=i+i; j<=n; j+=i) {
				isp.set(j, false);
			}
		}


		dump(isp);

		ArrayList<Integer> primes = new ArrayList<>();
		for (int i=isp.nextSetBit(k); i>=0; i=isp.nextSetBit(i+1)) {
			primes.add(i);
		}

		dump(primes);

		int m = primes.size();
		int l = 0, max = 0;
		int ans = -1;
		BitSet mask = new BitSet();
		ArrayList<Integer> hashes = new ArrayList<>();
		for (int r=0; r<m; r++) {
			int h = hash(primes.get(r));
			hashes.add(h);
			if (mask.get(h)) {
				while (h != hashes.get(l)) {
					mask.set(hashes.get(l), false);
					l++;
				}
				l++;
			} else {
				mask.set(h);
			}
			int x = mask.cardinality();

			if (max <= x) {
				max = x;
				ans = l;
			}
		}

		out.println(primes.get(ans));
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		dump((end-start) + "ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0