結果

問題 No.6 使いものにならないハッシュ
ユーザー nebukuro09nebukuro09
提出日時 2016-09-30 09:52:15
言語 Python2
(2.7.18)
結果
AC  
実行時間 183 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-09-16 16:37:01
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 183 ms
8,448 KB
testcase_03 AC 38 ms
6,400 KB
testcase_04 AC 51 ms
6,912 KB
testcase_05 AC 61 ms
7,040 KB
testcase_06 AC 103 ms
7,808 KB
testcase_07 AC 72 ms
7,424 KB
testcase_08 AC 93 ms
7,424 KB
testcase_09 AC 71 ms
7,936 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 42 ms
6,784 KB
testcase_12 AC 122 ms
7,680 KB
testcase_13 AC 61 ms
7,808 KB
testcase_14 AC 69 ms
7,936 KB
testcase_15 AC 100 ms
7,168 KB
testcase_16 AC 87 ms
7,936 KB
testcase_17 AC 137 ms
8,192 KB
testcase_18 AC 170 ms
8,576 KB
testcase_19 AC 132 ms
7,936 KB
testcase_20 AC 118 ms
7,808 KB
testcase_21 AC 28 ms
6,656 KB
testcase_22 AC 124 ms
8,064 KB
testcase_23 AC 119 ms
7,936 KB
testcase_24 AC 121 ms
7,808 KB
testcase_25 AC 78 ms
7,552 KB
testcase_26 AC 144 ms
8,064 KB
testcase_27 AC 113 ms
7,936 KB
testcase_28 AC 78 ms
7,168 KB
testcase_29 AC 152 ms
8,064 KB
testcase_30 AC 137 ms
7,936 KB
testcase_31 AC 124 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_table(k, n):
    list = [True for _ in xrange(n + 1)]
    i = 2
    while i * i <= n:
        if list[i]:
            j = i + i
            while j <= n:
                list[j] = False
                j += i
        i += 1

    table = [i for i in xrange(n + 1) if list[i] and i >= 2 and i >= k]
    return table

def _hash(n):
    while n >= 10:
        n = sum(int(s) for s in str(n))
    return n

K = input()
N = input()

p = prime_table(K, N)
h = map(_hash, p)

for r in xrange(9, 0, -1):
    for i in xrange(len(p)-r, -1, -1):
        if len(set(h[i:i+r])) == r:
            print p[i]
            exit()
0