結果

問題 No.6 使いものにならないハッシュ
ユーザー yuki2006yuki2006
提出日時 2015-06-20 17:56:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 5,000 ms
コード長 1,084 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-09-16 16:27:32
合計ジャッジ時間 6,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 285 ms
13,312 KB
testcase_03 AC 71 ms
11,136 KB
testcase_04 AC 112 ms
11,648 KB
testcase_05 AC 110 ms
11,392 KB
testcase_06 AC 184 ms
12,544 KB
testcase_07 AC 149 ms
12,416 KB
testcase_08 AC 177 ms
12,416 KB
testcase_09 AC 187 ms
12,928 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 75 ms
11,136 KB
testcase_12 AC 195 ms
12,416 KB
testcase_13 AC 169 ms
12,672 KB
testcase_14 AC 175 ms
12,928 KB
testcase_15 AC 173 ms
12,288 KB
testcase_16 AC 189 ms
12,800 KB
testcase_17 AC 248 ms
13,312 KB
testcase_18 AC 273 ms
13,312 KB
testcase_19 AC 241 ms
13,184 KB
testcase_20 AC 215 ms
12,800 KB
testcase_21 AC 55 ms
11,008 KB
testcase_22 AC 223 ms
13,056 KB
testcase_23 AC 195 ms
12,544 KB
testcase_24 AC 213 ms
12,672 KB
testcase_25 AC 167 ms
12,288 KB
testcase_26 AC 242 ms
13,056 KB
testcase_27 AC 214 ms
12,928 KB
testcase_28 AC 135 ms
12,032 KB
testcase_29 AC 259 ms
13,184 KB
testcase_30 AC 225 ms
12,928 KB
testcase_31 AC 216 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

used = [0] * 10

for x in range(10):
    used[x] = False

K = int(input())
N = int(input())
num = [2]
prime = []
prime1 = []

table = [True] * (N + 1)

for i in range(2, N + 1):
    if not table[i]:
        continue
    k = i + i
    while k < N + 1:
        table[k] = False
        k += i

    num.append(i)



for x in range(len(num)):
    if num[x] >= K and num[x] != 0:
        prime1.append(num[x])
        while num[x] >= 10:
            s = str(num[x])
            num[x] = 0
            for y in range(len(s)):
                num[x] += int(s[y])
        prime.append(num[x])

length = 0
start = 0
best_s = 0
best_l = 0

i = 0
while i < len(prime):
    if not used[prime[i]]:
        used[prime[i]] = True
        length += 1
        i += 1
    else:
        if start >= len(prime): break
        while start < i and prime[start] != prime[i]:
            used[prime[start]] = False
            start += 1
        start += 1
        length = i - start + 1
        i += 1

    best_l = max(best_l, length)
    if best_l == length:
        best_s = start

print(prime1[best_s])
0