結果

問題 No.6 使いものにならないハッシュ
ユーザー HydruHydru
提出日時 2023-01-15 15:58:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 1,103 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 108,580 KB
最終ジャッジ日時 2024-06-08 18:52:06
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,056 KB
testcase_01 AC 41 ms
54,928 KB
testcase_02 AC 119 ms
108,580 KB
testcase_03 AC 80 ms
80,688 KB
testcase_04 AC 96 ms
88,096 KB
testcase_05 AC 90 ms
85,668 KB
testcase_06 AC 113 ms
97,244 KB
testcase_07 AC 105 ms
95,092 KB
testcase_08 AC 111 ms
97,456 KB
testcase_09 AC 112 ms
106,484 KB
testcase_10 AC 44 ms
54,200 KB
testcase_11 AC 85 ms
80,448 KB
testcase_12 AC 115 ms
97,352 KB
testcase_13 AC 94 ms
99,256 KB
testcase_14 AC 110 ms
105,036 KB
testcase_15 AC 107 ms
94,956 KB
testcase_16 AC 111 ms
103,052 KB
testcase_17 AC 114 ms
108,332 KB
testcase_18 AC 125 ms
108,580 KB
testcase_19 AC 119 ms
108,056 KB
testcase_20 AC 108 ms
99,996 KB
testcase_21 AC 66 ms
75,636 KB
testcase_22 AC 114 ms
102,836 KB
testcase_23 AC 112 ms
97,344 KB
testcase_24 AC 117 ms
99,976 KB
testcase_25 AC 108 ms
95,252 KB
testcase_26 AC 125 ms
108,156 KB
testcase_27 AC 110 ms
102,892 KB
testcase_28 AC 91 ms
91,344 KB
testcase_29 AC 131 ms
107,872 KB
testcase_30 AC 118 ms
100,080 KB
testcase_31 AC 115 ms
100,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# nまでの素数を要素にもつ集合を返す関数
def primesUpTo(n):
    primes=set(range(2,n+1))
    for i in range(2,n):
        if i in primes:
            it = i ** 2
            while it <= n:
                if it in primes:
                    primes.remove(it)
                it += i
    return primes

def digit_hash(n):
    result=0
    while(n!=0):
        result+=n%10
        n//=10
    if result<10:
        return result
    else:
        return digit_hash(result)

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

P=sorted(list(primesUpTo(n)))

from collections import deque

Q=deque()
cnt=0
max_cnt=0
hash=[0 for _ in range(10)]
max_p=0

for i in range(len(P)):
    p=P[i]
    if p<k:
        continue
    sp=digit_hash(p)
    if hash[sp]==0:
        hash[sp]=1
        cnt+=1
    else:
        while(True):
            q=Q.popleft()
            sq=digit_hash(q)
            hash[sq]=0
            cnt-=1
            if sq==sp:
                hash[sp]=1
                cnt+=1
                break
    Q.append(p)
    if cnt>=max_cnt:
        max_cnt=cnt
        max_p=i-cnt+1

print(P[max_p])
0