結果

問題 No.6 使いものにならないハッシュ
ユーザー takakintakakin
提出日時 2020-04-23 21:40:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 721 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-16 16:55:39
合計ジャッジ時間 3,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 98 ms
12,800 KB
testcase_03 AC 40 ms
11,008 KB
testcase_04 AC 45 ms
11,648 KB
testcase_05 AC 47 ms
11,264 KB
testcase_06 AC 68 ms
12,288 KB
testcase_07 AC 59 ms
12,032 KB
testcase_08 AC 67 ms
12,160 KB
testcase_09 AC 67 ms
12,928 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 40 ms
11,264 KB
testcase_12 AC 77 ms
12,288 KB
testcase_13 AC 58 ms
12,544 KB
testcase_14 AC 63 ms
12,672 KB
testcase_15 AC 69 ms
11,904 KB
testcase_16 AC 66 ms
12,544 KB
testcase_17 AC 84 ms
12,800 KB
testcase_18 AC 96 ms
12,800 KB
testcase_19 AC 83 ms
12,928 KB
testcase_20 AC 78 ms
12,288 KB
testcase_21 AC 36 ms
10,880 KB
testcase_22 AC 80 ms
12,544 KB
testcase_23 AC 77 ms
12,160 KB
testcase_24 AC 80 ms
12,416 KB
testcase_25 AC 60 ms
12,160 KB
testcase_26 AC 88 ms
12,672 KB
testcase_27 AC 74 ms
12,544 KB
testcase_28 AC 57 ms
11,648 KB
testcase_29 AC 88 ms
12,672 KB
testcase_30 AC 83 ms
12,544 KB
testcase_31 AC 81 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
k=int(input())
n=int(input())
import bisect
def 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 not is_prime[i]:
      continue
    for j in range(i*2,n+1,i):
      is_prime[j]=False
  return [i for i in range(n+1) if is_prime[i]]
P=primes(n)

def f(x):
  if len(str(x))==1:
    return x
  else:
    ret=x%10+f(x//10)
    if ret>=10:
      return ret%10+1
    else:
      return ret

kk=bisect.bisect_left(P,k)
nn=len(P)
C=[kk-1]*10
lr=0
l=kk-1
for i in range(kk,nn):
  p=P[i]
  pp=f(p)
  if i-max(l,C[pp])>=lr:
    ans=P[max(l,C[pp])+1]
    lr=i-max(l,C[pp])
  l=max(l,C[pp])
  C[pp]=i
print(ans)
0