結果

問題 No.6 使いものにならないハッシュ
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-23 17:24:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 508 ms / 5,000 ms
コード長 942 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-09-16 16:49:08
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 508 ms
11,648 KB
testcase_03 AC 77 ms
11,008 KB
testcase_04 AC 105 ms
11,008 KB
testcase_05 AC 120 ms
11,008 KB
testcase_06 AC 261 ms
11,264 KB
testcase_07 AC 159 ms
11,008 KB
testcase_08 AC 236 ms
11,264 KB
testcase_09 AC 113 ms
11,008 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 77 ms
11,136 KB
testcase_12 AC 302 ms
11,392 KB
testcase_13 AC 76 ms
10,880 KB
testcase_14 AC 114 ms
11,008 KB
testcase_15 AC 242 ms
11,136 KB
testcase_16 AC 201 ms
11,008 KB
testcase_17 AC 401 ms
11,392 KB
testcase_18 AC 487 ms
11,648 KB
testcase_19 AC 380 ms
11,264 KB
testcase_20 AC 310 ms
11,392 KB
testcase_21 AC 53 ms
11,008 KB
testcase_22 AC 353 ms
11,392 KB
testcase_23 AC 303 ms
11,392 KB
testcase_24 AC 326 ms
11,264 KB
testcase_25 AC 185 ms
11,008 KB
testcase_26 AC 414 ms
11,392 KB
testcase_27 AC 311 ms
11,136 KB
testcase_28 AC 174 ms
11,136 KB
testcase_29 AC 432 ms
11,520 KB
testcase_30 AC 363 ms
11,520 KB
testcase_31 AC 337 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import math

def h(n):
    r = n%10
    while n >= 10:
        n //= 10
        r += n%10
    if r >= 10:
        r = h(r)
    return r

def isp(n):
    if n == 1:
        return False
    for i in range(2, math.floor(math.sqrt(n))+1):
        if n % i == 0:
            return False
    return True

if __name__ == '__main__':
    k = int(input())
    n = int(input())
    l = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]
    p = []
    s = 0
    a = 0
    ap = 2
    ii = 0
    for i in range(k, n+1):
        if isp(i):
            p.append(i)
            ha = h(i)
            if l[ha] != -1:
                if s <= l[ha]:
                    d = ii - s
                    if a <= d:
                        a = d
                        ap = p[s]
                    s = l[ha]+1
            l[ha] = ii
            ii += 1
    d = len(p) - s
    if a <= d:
        a = d
        ap = p[s]
    print(ap)
0