結果

問題 No.6 使いものにならないハッシュ
ユーザー こるこる
提出日時 2017-01-04 22:13:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 477 ms / 5,000 ms
コード長 828 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-09-16 16:38:27
合計ジャッジ時間 10,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 477 ms
18,944 KB
testcase_03 AC 92 ms
12,032 KB
testcase_04 AC 166 ms
13,696 KB
testcase_05 AC 144 ms
12,928 KB
testcase_06 AC 307 ms
16,256 KB
testcase_07 AC 266 ms
15,616 KB
testcase_08 AC 328 ms
16,256 KB
testcase_09 AC 360 ms
18,176 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 94 ms
12,160 KB
testcase_12 AC 309 ms
16,000 KB
testcase_13 AC 348 ms
17,664 KB
testcase_14 AC 358 ms
17,792 KB
testcase_15 AC 278 ms
15,616 KB
testcase_16 AC 375 ms
17,280 KB
testcase_17 AC 439 ms
18,560 KB
testcase_18 AC 448 ms
18,688 KB
testcase_19 AC 403 ms
18,048 KB
testcase_20 AC 336 ms
16,768 KB
testcase_21 AC 70 ms
11,520 KB
testcase_22 AC 390 ms
17,664 KB
testcase_23 AC 320 ms
16,384 KB
testcase_24 AC 349 ms
17,280 KB
testcase_25 AC 267 ms
15,872 KB
testcase_26 AC 424 ms
18,176 KB
testcase_27 AC 366 ms
17,536 KB
testcase_28 AC 216 ms
14,336 KB
testcase_29 AC 451 ms
18,304 KB
testcase_30 AC 368 ms
16,896 KB
testcase_31 AC 376 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
n=int(input())
a=list(range(n+1))
a[1]=0
count=2
while count**2<=n:
    i=2
    while count*i<=n:
        a[count*i]=0
        i+=1
    count+=1
list=[]
sum_list=[]

def fun(num):
    while int(num)>=10:
        sum=0
        for i in range(len(str(num))):
            sum+=int(str(num)[i])
        num=sum
    return num

for i in a:
    if k<=i and i<=n and i>0:
        list.append(fun(i))
        sum_list.append(i)


dp=[False]*10
max=0
sum=0
for i in range(len(list)):
    dp = [False] * 10
    count=0
    dp[list[i]]=True
    for j in range(i+1,len(list)):
        if dp[list[j]]:
            if max<=count:
                sum=sum_list[i]
                max=count
            break;
        dp[list[j]]=True
        count+=1
    if max <= count:
        sum = sum_list[i]
        max = count

print(sum)
0