結果

問題 No.6 使いものにならないハッシュ
ユーザー tabataba
提出日時 2016-04-13 00:03:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,402 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-16 16:34:57
合計ジャッジ時間 26,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,400 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 2,402 ms
13,056 KB
testcase_03 AC 137 ms
7,296 KB
testcase_04 AC 221 ms
7,680 KB
testcase_05 AC 345 ms
8,320 KB
testcase_06 AC 825 ms
9,600 KB
testcase_07 AC 358 ms
8,064 KB
testcase_08 AC 655 ms
8,960 KB
testcase_09 AC 194 ms
7,168 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 173 ms
7,424 KB
testcase_12 AC 1,227 ms
10,496 KB
testcase_13 AC 106 ms
6,784 KB
testcase_14 AC 195 ms
7,168 KB
testcase_15 AC 838 ms
9,728 KB
testcase_16 AC 446 ms
8,064 KB
testcase_17 AC 1,313 ms
10,752 KB
testcase_18 AC 2,174 ms
12,544 KB
testcase_19 AC 1,257 ms
10,624 KB
testcase_20 AC 1,067 ms
10,240 KB
testcase_21 AC 79 ms
7,040 KB
testcase_22 AC 1,153 ms
10,240 KB
testcase_23 AC 1,109 ms
10,368 KB
testcase_24 AC 1,111 ms
10,368 KB
testcase_25 AC 451 ms
8,448 KB
testcase_26 AC 1,549 ms
11,264 KB
testcase_27 AC 926 ms
9,728 KB
testcase_28 AC 510 ms
8,704 KB
testcase_29 AC 1,722 ms
11,648 KB
testcase_30 AC 1,471 ms
11,264 KB
testcase_31 AC 1,166 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
k=input()
n=input()
def hash(a):
	a=sum(int(i)for i in`a`)
	return a if a<10 else hash(a)
def isprime(a):
	if a<2:return False
	if a==2:return True
	s=math.sqrt(a)
	for i in range(2,int(s)+2):
		if a%i==0:
			return False
	return True
p=[i for i in range(k,n+1)if isprime(i)]
h=[hash(i)for i in p]
l=[0]*len(p)
m=-1
#print p
#print h
for i in range(len(p)):
	for j in range(i+1,len(p)+1):
		t=h[i:j]
		s=set(t)
		if len(t)==len(s):
			l[i]=j-i
			if l[i]>=l[m]:
				m=i
		else:
			break
#print l
#print m
print p[m]
0