結果

問題 No.6 使いものにならないハッシュ
ユーザー titiatitia
提出日時 2021-11-01 15:01:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 305 ms / 5,000 ms
コード長 863 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-10 04:14:05
合計ジャッジ時間 6,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 305 ms
18,944 KB
testcase_03 AC 69 ms
12,288 KB
testcase_04 AC 90 ms
13,824 KB
testcase_05 AC 106 ms
13,184 KB
testcase_06 AC 173 ms
16,384 KB
testcase_07 AC 129 ms
16,000 KB
testcase_08 AC 162 ms
16,384 KB
testcase_09 AC 131 ms
18,560 KB
testcase_10 AC 29 ms
11,008 KB
testcase_11 AC 74 ms
12,160 KB
testcase_12 AC 204 ms
16,256 KB
testcase_13 AC 116 ms
18,048 KB
testcase_14 AC 130 ms
18,048 KB
testcase_15 AC 166 ms
15,488 KB
testcase_16 AC 150 ms
17,536 KB
testcase_17 AC 226 ms
18,560 KB
testcase_18 AC 278 ms
18,688 KB
testcase_19 AC 223 ms
18,176 KB
testcase_20 AC 190 ms
16,896 KB
testcase_21 AC 55 ms
11,776 KB
testcase_22 AC 208 ms
17,792 KB
testcase_23 AC 193 ms
16,512 KB
testcase_24 AC 202 ms
17,152 KB
testcase_25 AC 134 ms
15,872 KB
testcase_26 AC 230 ms
18,176 KB
testcase_27 AC 191 ms
17,664 KB
testcase_28 AC 129 ms
14,720 KB
testcase_29 AC 248 ms
18,176 KB
testcase_30 AC 230 ms
17,280 KB
testcase_31 AC 202 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=int(input())
N=int(input())


def c(x):
    S=str(x)
    ANS=0
    for s in S:
        ANS+=int(s)

    if ANS<=9:
        return ANS
    else:
        return c(ANS)

x=N+1

import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0 and K<=j<=N]

ANS=0
j=0
SET=set()
AX=0
for i in range(len(Primes)):
    while j<len(Primes) and not(c(Primes[j]) in SET):
        SET.add(c(Primes[j]))
        if ANS<=len(SET):
            AX=Primes[i]
            ANS=len(SET)
            
        j+=1
    #print(Primes[i],SET)

    SET.remove(c(Primes[i]))


print(AX)
        
    
    
0