結果

問題 No.6 使いものにならないハッシュ
ユーザー ayame_pyayame_py
提出日時 2015-10-08 15:26:49
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,624 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-16 16:31:08
合計ジャッジ時間 37,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,528 KB
testcase_01 AC 12 ms
6,528 KB
testcase_02 AC 2,624 ms
12,672 KB
testcase_03 AC 223 ms
7,356 KB
testcase_04 AC 424 ms
7,492 KB
testcase_05 AC 470 ms
7,936 KB
testcase_06 AC 1,284 ms
9,472 KB
testcase_07 AC 727 ms
7,936 KB
testcase_08 AC 1,146 ms
8,960 KB
testcase_09 AC 466 ms
7,164 KB
testcase_10 AC 11 ms
6,528 KB
testcase_11 AC 248 ms
7,252 KB
testcase_12 AC 1,475 ms
10,496 KB
testcase_13 AC 256 ms
6,784 KB
testcase_14 AC 462 ms
7,296 KB
testcase_15 AC 1,165 ms
9,472 KB
testcase_16 AC 937 ms
8,064 KB
testcase_17 AC 2,015 ms
10,496 KB
testcase_18 AC 2,484 ms
12,416 KB
testcase_19 AC 1,910 ms
10,496 KB
testcase_20 AC 1,558 ms
9,856 KB
testcase_21 AC 120 ms
6,912 KB
testcase_22 AC 1,762 ms
10,240 KB
testcase_23 AC 1,478 ms
10,368 KB
testcase_24 AC 1,632 ms
10,240 KB
testcase_25 AC 861 ms
8,320 KB
testcase_26 AC 2,116 ms
11,008 KB
testcase_27 AC 1,552 ms
9,472 KB
testcase_28 AC 788 ms
8,704 KB
testcase_29 AC 2,223 ms
11,648 KB
testcase_30 AC 1,839 ms
11,136 KB
testcase_31 AC 1,697 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8
import math
def hashf(n):
	while int(math.log10(n))!=0:
		m = int(math.log10(n)) + 1
		temp = 0
		for i in range(1, m+1):
			t = n%10
			temp += t
			n -= t
			n /= 10
		n = temp
	return n

def prime(k, n):
	res = []
	if k<=2 and 2<=n: res.append(2)
	for i in range(max(k, 2), n+1):
		for j in range(2, int(math.sqrt(i))+2):
			if i % j == 0:
				break
			if j == int(math.sqrt(i)+1):
				res.append(i)
	return res

k = int(raw_input())
n = int(raw_input())

array = prime(k, n)

array_hash = list(array)
for i in range(len(array)):
	array_hash[i] = hashf(array_hash[i])

inum = [0 for _ in range(10)]
leng = 0
ans = 0
r = 0

for l in range(len(array_hash)):
	while(r < len(array_hash) and inum[array_hash[r]]==0):
		inum[array_hash[r]]+=1
		r+=1
	if leng <= r-l:
		leng = r-l
		ans = array[l]
	inum[array_hash[l]]-=1

print ans
0