結果

問題 No.6 使いものにならないハッシュ
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 17:13:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 647 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 78,116 KB
最終ジャッジ日時 2024-06-10 17:13:32
合計ジャッジ時間 3,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,920 KB
testcase_01 AC 35 ms
53,384 KB
testcase_02 AC 76 ms
77,920 KB
testcase_03 AC 67 ms
76,432 KB
testcase_04 AC 66 ms
76,612 KB
testcase_05 AC 71 ms
76,472 KB
testcase_06 AC 72 ms
77,148 KB
testcase_07 AC 66 ms
77,128 KB
testcase_08 AC 71 ms
77,224 KB
testcase_09 AC 66 ms
76,368 KB
testcase_10 AC 35 ms
52,728 KB
testcase_11 AC 64 ms
76,780 KB
testcase_12 AC 69 ms
77,188 KB
testcase_13 AC 64 ms
73,400 KB
testcase_14 AC 67 ms
75,496 KB
testcase_15 AC 74 ms
76,780 KB
testcase_16 AC 74 ms
77,604 KB
testcase_17 AC 78 ms
77,712 KB
testcase_18 AC 74 ms
77,904 KB
testcase_19 AC 82 ms
77,712 KB
testcase_20 AC 75 ms
77,392 KB
testcase_21 AC 65 ms
74,208 KB
testcase_22 AC 76 ms
77,616 KB
testcase_23 AC 71 ms
77,356 KB
testcase_24 AC 77 ms
77,468 KB
testcase_25 AC 67 ms
76,988 KB
testcase_26 AC 73 ms
78,116 KB
testcase_27 AC 80 ms
77,732 KB
testcase_28 AC 75 ms
76,872 KB
testcase_29 AC 80 ms
77,636 KB
testcase_30 AC 77 ms
77,496 KB
testcase_31 AC 74 ms
77,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
n=int(input())

def get_primes(n):
  is_prime = [True] * (n + 1)
  is_prime[0] = False
  is_prime[1] = False
  for i in range(2, int(n ** 0.5) + 1):
    if is_prime[i]:
      for j in range(i * i, n + 1, i):
        is_prime[j] = False
  return [i for i in range(n + 1) if is_prime[i] and i>=k]

def to_hash(x):
  while x>9:
    x=sum(map(int, str(x)))
  return x

primes = get_primes(n)
hashes = [to_hash(prime) for prime in primes]

ans=0
idx=-1

for i in range(len(primes))[::-1]:
  s=set()
  j=0
  while i+j<len(primes) and hashes[i+j] not in s:
    s.add(hashes[i+j])
    j+=1
  if ans<j:
    ans=j
    idx=i
print(primes[idx])
0