結果

問題 No.6 使いものにならないハッシュ
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-11 21:47:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 422 ms / 5,000 ms
コード長 1,644 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 80,020 KB
実行使用メモリ 42,152 KB
最終ジャッジ日時 2024-09-16 16:50:35
合計ジャッジ時間 10,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,152 KB
testcase_01 AC 125 ms
41,188 KB
testcase_02 AC 422 ms
42,092 KB
testcase_03 AC 147 ms
41,344 KB
testcase_04 AC 182 ms
41,252 KB
testcase_05 AC 180 ms
41,088 KB
testcase_06 AC 285 ms
41,204 KB
testcase_07 AC 209 ms
41,400 KB
testcase_08 AC 246 ms
41,104 KB
testcase_09 AC 171 ms
41,420 KB
testcase_10 AC 113 ms
41,048 KB
testcase_11 AC 146 ms
41,512 KB
testcase_12 AC 276 ms
41,452 KB
testcase_13 AC 150 ms
40,968 KB
testcase_14 AC 182 ms
41,408 KB
testcase_15 AC 251 ms
42,024 KB
testcase_16 AC 229 ms
41,508 KB
testcase_17 AC 350 ms
41,800 KB
testcase_18 AC 418 ms
42,140 KB
testcase_19 AC 333 ms
41,804 KB
testcase_20 AC 286 ms
41,684 KB
testcase_21 AC 129 ms
41,332 KB
testcase_22 AC 315 ms
41,580 KB
testcase_23 AC 280 ms
41,724 KB
testcase_24 AC 307 ms
41,824 KB
testcase_25 AC 207 ms
40,948 KB
testcase_26 AC 351 ms
42,152 KB
testcase_27 AC 286 ms
41,600 KB
testcase_28 AC 208 ms
41,756 KB
testcase_29 AC 355 ms
41,548 KB
testcase_30 AC 317 ms
41,912 KB
testcase_31 AC 300 ms
41,424 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();
    ArrayList<Integer> prime = new ArrayList<Integer>();
    ArrayList<Integer> F = new ArrayList<Integer>();
    for(int i = k; i <= n; i++) {
      if(isP(i)) prime.add(i);
    }
    Collections.sort(prime);
    for(int i = 0; i < prime.size(); i++) {
      F.add(f(prime.get(i)));
    }
    int right = 0;
    int ans = 0;
    int len = 0;
    int[] kosuu = new int[10];
    kosuu[F.get(0)]++;
    while(right < prime.size() - 1) {
      if(kosuu[F.get(right + 1)] > 0) {
        break;
      } else {
        kosuu[F.get(right + 1)]++;
        right++;
      }
    }
    int c = right + 1;
    if(len <= c) {
      ans = prime.get(0);
      len = c;
    }
    for(int i = 1; i < prime.size(); i++) {
      kosuu[F.get(i - 1)]--;
      while(right < prime.size() - 1) {
        if(kosuu[F.get(right + 1)] > 0) {
          break;
        } else {
          kosuu[F.get(right + 1)]++;
          right++;
        }
      }
      int t = right - i + 1;
      if(len <= t) {
        ans = prime.get(i);
        len = t;
      }
    }
    System.out.println(ans);
  }

  public static boolean isP(int n) {
    int p = 0;
    for(int i = 2; (i * i) <= n; i++) {
      if((n % i) == 0) p++;
    }
    if(n == 1) return false;
    if(p == 0) return true;
    return false;
  }

  public static int f(int n) {
    if(n < 10) return n;
    int q = 0;
    for(int i = 0; i < 10; i++) {
      int t = n / (int)Math.pow(10, i);
      q += (t % 10);
    }
    return f(q);
  } 
}
0