結果

問題 No.6 使いものにならないハッシュ
ユーザー TawaraTawara
提出日時 2016-07-26 23:38:38
言語 Python2
(2.7.18)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 734 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-09-16 16:34:27
合計ジャッジ時間 2,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,816 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 77 ms
8,960 KB
testcase_03 AC 23 ms
6,944 KB
testcase_04 AC 29 ms
7,424 KB
testcase_05 AC 32 ms
7,424 KB
testcase_06 AC 48 ms
8,064 KB
testcase_07 AC 37 ms
7,936 KB
testcase_08 AC 45 ms
7,936 KB
testcase_09 AC 40 ms
8,320 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 24 ms
6,944 KB
testcase_12 AC 57 ms
8,192 KB
testcase_13 AC 35 ms
8,192 KB
testcase_14 AC 38 ms
8,192 KB
testcase_15 AC 47 ms
7,808 KB
testcase_16 AC 44 ms
8,192 KB
testcase_17 AC 61 ms
8,704 KB
testcase_18 AC 74 ms
8,704 KB
testcase_19 AC 60 ms
8,576 KB
testcase_20 AC 54 ms
8,192 KB
testcase_21 AC 20 ms
6,940 KB
testcase_22 AC 58 ms
8,448 KB
testcase_23 AC 54 ms
8,064 KB
testcase_24 AC 57 ms
8,320 KB
testcase_25 AC 40 ms
7,936 KB
testcase_26 AC 65 ms
8,576 KB
testcase_27 AC 54 ms
8,448 KB
testcase_28 AC 39 ms
7,680 KB
testcase_29 AC 68 ms
8,576 KB
testcase_30 AC 62 ms
8,320 KB
testcase_31 AC 57 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import defaultdict as ddict
def sieve (n):
	check = [1]*(n+1)
	check[0] = check[1] = 0
	for d in xrange(2,int(math.sqrt(n))+1):
		if check[d] == 0: continue
		for comp in xrange(d*2,n+1,d):
			check[comp] = 0
	return check
def convert(n):
	while n > 9:
		tmp = 0
 		while n > 0:
 			tmp += n%10
 			n /= 10
 		n = tmp
 	return n
K = int(raw_input())
N = int(raw_input())
prime = sieve(N)
l = [i for i in xrange(K,N+1) if prime[i]]
ulhash = ddict(int)
ans = l[0]
maxlen = 1
ulhash[convert(l[0])] = lpos = 0
for rpos in xrange(1,len(l)):
	r = convert(l[rpos])
	if ulhash[r] >= lpos:
		lpos = ulhash[r] + 1
	ulhash[r] = rpos
	if maxlen <= rpos - lpos + 1:
		ans = l[lpos]
		maxlen = rpos - lpos + 1
print ans
0