結果

問題 No.6 使いものにならないハッシュ
ユーザー zimphazimpha
提出日時 2017-03-24 22:42:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 2,646 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 39,588 KB
最終ジャッジ日時 2024-09-16 16:38:35
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,184 KB
testcase_01 AC 52 ms
37,348 KB
testcase_02 AC 90 ms
39,380 KB
testcase_03 AC 63 ms
37,508 KB
testcase_04 AC 71 ms
37,900 KB
testcase_05 AC 78 ms
38,392 KB
testcase_06 AC 75 ms
38,676 KB
testcase_07 AC 82 ms
38,536 KB
testcase_08 AC 87 ms
38,928 KB
testcase_09 AC 78 ms
38,596 KB
testcase_10 AC 52 ms
36,632 KB
testcase_11 AC 63 ms
37,776 KB
testcase_12 AC 84 ms
39,104 KB
testcase_13 AC 73 ms
38,060 KB
testcase_14 AC 72 ms
38,368 KB
testcase_15 AC 78 ms
38,500 KB
testcase_16 AC 82 ms
38,528 KB
testcase_17 AC 85 ms
39,408 KB
testcase_18 AC 78 ms
39,588 KB
testcase_19 AC 84 ms
38,996 KB
testcase_20 AC 83 ms
39,424 KB
testcase_21 AC 57 ms
37,380 KB
testcase_22 AC 86 ms
39,244 KB
testcase_23 AC 85 ms
39,060 KB
testcase_24 AC 86 ms
39,092 KB
testcase_25 AC 74 ms
38,516 KB
testcase_26 AC 88 ms
39,188 KB
testcase_27 AC 80 ms
38,940 KB
testcase_28 AC 71 ms
38,484 KB
testcase_29 AC 86 ms
39,056 KB
testcase_30 AC 87 ms
39,416 KB
testcase_31 AC 76 ms
39,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.List;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Chiaki.Hoshinomori
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task006 solver = new Task006();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task006 {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            int k = in.nextInt();
            int n = in.nextInt();
            boolean[] mark = new boolean[n + 1];
            List<Integer> pl = new ArrayList<>();
            for (int i = 2; i <= n; ++i) {
                if (mark[i]) continue;
                if (i >= k) {
                    pl.add(i);
                }
                for (int j = i + i; j <= n; j += i) {
                    mark[j] = true;
                }
            }
            int cnt = 0;
            int ret = -1;
            for (int i = 0, j; i < pl.size(); ++i) {
                mark = new boolean[9];
                for (j = i; j < pl.size(); ++j) {
                    if (mark[pl.get(j) % 9]) {
                        break;
                    }
                    mark[pl.get(j) % 9] = true;
                }
                if (j - i >= cnt) {
                    cnt = j - i;
                    ret = pl.get(i);
                }
            }
            out.println(ret);
        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

    }
}

0