結果

問題 No.6 使いものにならないハッシュ
ユーザー ゆるくゆるく
提出日時 2014-10-11 01:05:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 847 ms / 5,000 ms
コード長 915 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-09-16 16:21:30
合計ジャッジ時間 13,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 847 ms
13,824 KB
testcase_03 AC 103 ms
11,392 KB
testcase_04 AC 162 ms
11,520 KB
testcase_05 AC 184 ms
11,904 KB
testcase_06 AC 429 ms
12,288 KB
testcase_07 AC 254 ms
11,520 KB
testcase_08 AC 381 ms
12,160 KB
testcase_09 AC 172 ms
11,264 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 112 ms
11,392 KB
testcase_12 AC 500 ms
12,928 KB
testcase_13 AC 105 ms
11,136 KB
testcase_14 AC 172 ms
11,264 KB
testcase_15 AC 397 ms
12,544 KB
testcase_16 AC 320 ms
11,776 KB
testcase_17 AC 655 ms
12,672 KB
testcase_18 AC 809 ms
13,696 KB
testcase_19 AC 621 ms
12,800 KB
testcase_20 AC 513 ms
12,672 KB
testcase_21 AC 69 ms
11,264 KB
testcase_22 AC 576 ms
12,672 KB
testcase_23 AC 488 ms
12,672 KB
testcase_24 AC 538 ms
12,544 KB
testcase_25 AC 298 ms
11,904 KB
testcase_26 AC 691 ms
12,928 KB
testcase_27 AC 505 ms
12,416 KB
testcase_28 AC 270 ms
12,032 KB
testcase_29 AC 711 ms
13,312 KB
testcase_30 AC 604 ms
13,056 KB
testcase_31 AC 561 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from collections import deque

import re
def is_prime(n):
    i = 2
    while i * i <=n:
        if n % i == 0:
            return False
        i += 1
    return True

def sp(n):
    v = str(n)
    while v:
        s = 0
        for vv in v:
            s += int(vv)
        if s < 10:
            return int(s)
        v = str(s)

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

if K == 1:
    K += 1
a = []
b = []
mx = []
box = deque()
start = 0
end = 0
for i in range(K, N + 1):
    if is_prime(i):
        t = sp(i)
        a.append(i)
        b.append(t)
while (start <= end < len(b)):
    if not (b[end] in box):
        box.append(b[end])
        end += 1
    else:
        heapq.heappush(mx, [-(len(box)), -(a[start])])
        box.clear()
        start += 1
        end = start
heapq.heappush(mx, [-(len(box)), -(a[start])])
print(-(heapq.heappop(mx)[1]))
0