結果

問題 No.6 使いものにならないハッシュ
ユーザー DAZYDAZY
提出日時 2017-05-29 01:38:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,463 ms / 5,000 ms
コード長 1,825 bytes
コンパイル時間 3,638 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 42,196 KB
最終ジャッジ日時 2024-09-16 16:40:23
合計ジャッジ時間 27,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,964 KB
testcase_01 AC 126 ms
41,272 KB
testcase_02 AC 1,463 ms
41,808 KB
testcase_03 AC 195 ms
41,208 KB
testcase_04 AC 295 ms
41,384 KB
testcase_05 AC 268 ms
41,220 KB
testcase_06 AC 739 ms
41,720 KB
testcase_07 AC 506 ms
41,700 KB
testcase_08 AC 705 ms
41,560 KB
testcase_09 AC 444 ms
41,748 KB
testcase_10 AC 126 ms
41,048 KB
testcase_11 AC 195 ms
41,648 KB
testcase_12 AC 770 ms
41,488 KB
testcase_13 AC 293 ms
42,072 KB
testcase_14 AC 426 ms
42,024 KB
testcase_15 AC 608 ms
41,656 KB
testcase_16 AC 691 ms
41,620 KB
testcase_17 AC 1,263 ms
41,752 KB
testcase_18 AC 1,402 ms
41,888 KB
testcase_19 AC 1,189 ms
42,064 KB
testcase_20 AC 880 ms
41,820 KB
testcase_21 AC 146 ms
41,112 KB
testcase_22 AC 1,079 ms
41,868 KB
testcase_23 AC 801 ms
41,508 KB
testcase_24 AC 962 ms
41,784 KB
testcase_25 AC 567 ms
41,532 KB
testcase_26 AC 1,250 ms
41,740 KB
testcase_27 AC 998 ms
42,196 KB
testcase_28 AC 437 ms
41,568 KB
testcase_29 AC 1,276 ms
41,896 KB
testcase_30 AC 989 ms
41,780 KB
testcase_31 AC 986 ms
42,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No6 {
    public static boolean checkPrime (int n) {
        boolean b = true;
        if (n==2 || n==3 || n==5) ;
        else if ((n & 1)==0 || n==1) b = false;
        else {
            for (int i = 3; i < n/2; i+=2) {
                if (n % i==0) {
                    b = false;
                    break;
                }
            }
        }
        return b;
    }
    public static int sumEachbit (int n) {
        int sum;
        while (n > 9) {
            sum = 0;
            for (; n > 0;) {
                sum += n%10;
                n /= 10;
            }
            n = sum;
        }
        return n;
    }
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int K = scan.nextInt();
        int N = scan.nextInt();
        int[] S = new int[N+1];
        int check[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
        int ans = 0, max = 0, tmp1 = 0, tmp2 = 0, tmp3 = 0;
        for (int i = K; i <= N; i++) {
            if (checkPrime(i)) {
                S[i] = i;
                if (S[i] > 9) S[i] = sumEachbit(i);
            } else S[i] = -1;
        }
        for (int i = K; i <= N; i++) {
            if (S[i] == -1);
            else {
                if (tmp1 == 1) tmp3 = i;
                if (check[S[i]] == 0) {
                    if (tmp1 == 0) tmp2 = i;
                    tmp1++;
                    check[S[i]] = 1;
                } else {
                    if (tmp1 >= max) {
                        max = tmp1;
                        ans = tmp2;
                    }
                    tmp1 = 0;
                    Arrays.fill(check, 0);
                    i = tmp3 - 1;
                }
            }
        }
        if (tmp1 >= max) ans = tmp2;
        System.out.println(ans);
    }
}
0