結果

問題 No.6 使いものにならないハッシュ
ユーザー HimatsubushinHimatsubushin
提出日時 2019-12-24 14:41:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 909 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-09-16 16:53:52
合計ジャッジ時間 10,074 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 461 ms
12,928 KB
testcase_03 AC 98 ms
11,136 KB
testcase_04 AC 162 ms
11,392 KB
testcase_05 AC 156 ms
11,392 KB
testcase_06 AC 295 ms
12,160 KB
testcase_07 AC 254 ms
11,904 KB
testcase_08 AC 297 ms
12,160 KB
testcase_09 AC 330 ms
12,288 KB
testcase_10 RE -
testcase_11 AC 96 ms
11,008 KB
testcase_12 AC 321 ms
12,160 KB
testcase_13 AC 313 ms
12,032 KB
testcase_14 AC 333 ms
12,288 KB
testcase_15 AC 288 ms
11,904 KB
testcase_16 AC 328 ms
12,160 KB
testcase_17 AC 428 ms
12,544 KB
testcase_18 AC 497 ms
12,928 KB
testcase_19 AC 388 ms
12,544 KB
testcase_20 AC 360 ms
12,160 KB
testcase_21 AC 70 ms
11,136 KB
testcase_22 AC 368 ms
12,544 KB
testcase_23 AC 332 ms
12,032 KB
testcase_24 AC 354 ms
12,160 KB
testcase_25 AC 249 ms
12,032 KB
testcase_26 AC 423 ms
12,672 KB
testcase_27 AC 362 ms
12,416 KB
testcase_28 AC 203 ms
11,520 KB
testcase_29 AC 398 ms
12,672 KB
testcase_30 AC 373 ms
12,288 KB
testcase_31 AC 382 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Hash(number):
    while number >= 10:
        number = int(number / 10) + number % 10

    return number


k = int(input())
n = int(input())
numbers = [False for _ in range(n + 1)]
prime = []
max = 0

if k <= 2:
    prime.append(2)

for i in range(3, n + 1, 2):
    numbers[i] = True

for i in range(3, n, 2):
    j = 2
    while i * j <= n:
        numbers[i * j] = False
        j += 1

for i in range(k + 1 - k % 2, n + 1, 2):
    if numbers[i]:
        prime.append(i)

for i in range(0, len(prime) - 1, 1):
    checker = [False for _ in range(10)]
    count = 1
    checker[Hash(prime[i])] = True

    j = 1
    while j < 11 and i + j < len(prime):
        value = Hash(prime[i + j])

        if not checker[value]:
            checker[value] = True
            count += 1
        else:
            break
        j += 1

    if max <= count:
        max = count
        start = prime[i]

print(start)
0