結果

問題 No.6 使いものにならないハッシュ
ユーザー sue_charosue_charo
提出日時 2017-04-27 14:42:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,517 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-16 16:39:00
合計ジャッジ時間 9,389 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,392 KB
testcase_01 AC 35 ms
11,520 KB
testcase_02 AC 556 ms
12,288 KB
testcase_03 AC 84 ms
11,392 KB
testcase_04 AC 119 ms
11,392 KB
testcase_05 AC 137 ms
11,648 KB
testcase_06 AC 286 ms
11,776 KB
testcase_07 AC 176 ms
11,520 KB
testcase_08 AC 257 ms
11,776 KB
testcase_09 AC 122 ms
11,520 KB
testcase_10 WA -
testcase_11 AC 90 ms
11,392 KB
testcase_12 AC 334 ms
12,032 KB
testcase_13 AC 82 ms
11,520 KB
testcase_14 AC 123 ms
11,392 KB
testcase_15 AC 268 ms
11,904 KB
testcase_16 AC 215 ms
11,648 KB
testcase_17 AC 423 ms
11,904 KB
testcase_18 AC 529 ms
12,032 KB
testcase_19 AC 404 ms
11,904 KB
testcase_20 AC 341 ms
11,904 KB
testcase_21 AC 64 ms
11,392 KB
testcase_22 AC 377 ms
11,776 KB
testcase_23 AC 328 ms
12,032 KB
testcase_24 AC 353 ms
12,032 KB
testcase_25 AC 200 ms
11,648 KB
testcase_26 AC 446 ms
12,032 KB
testcase_27 AC 336 ms
11,904 KB
testcase_28 AC 193 ms
11,648 KB
testcase_29 AC 469 ms
11,904 KB
testcase_30 AC 398 ms
11,904 KB
testcase_31 AC 364 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
import array, bisect, collections, heapq, itertools, math, random, re, string, sys, time

sys.setrecursionlimit(10 ** 7)
INF = 10 ** 20
MOD = 10 ** 9 + 7


def II(): return int(input())
def ILI(): return list(map(int, input().split()))
def IAI(LINE): return [ILI() for __ in range(LINE)]
def IDI(): return {key: value for key, value in ILI()}


def make_primes(num_from, num_to):
    primes = []

    for i in range(num_from, num_to + 1):
        bool_prime = True
        if i == 1:
            continue
        elif i == 2:
            primes.append(2)
            continue
        for j in range(2, math.ceil(math.sqrt(i)) + 1):
            if i % j == 0:
                bool_prime = False
                break
        if bool_prime:
            primes.append(i)

    return primes


def make_one_hash(num):
    num_list = list(map(int, list(str(num))))
    while len(num_list) != 1:
        hash_sum = sum(num_list)
        num_list = list(map(int, list(str(hash_sum))))

    return num_list[0]


def solve(K, N):
    primes = make_primes(K, N)
    prime_hash = list(map(make_one_hash, primes))
    left = 0

    max_num = 1
    ans = 0

    for right in range(1, len(prime_hash)):
        while prime_hash[right] in prime_hash[left: right]:
            left += 1
        if (right - left + 1) >= max_num:
            max_num = right - left + 1
            ans = primes[left]

    return ans


def main():
    K = II()
    N = II()
    print(solve(K, N))


if __name__ == "__main__":
    main()
0