結果

問題 No.6 使いものにならないハッシュ
ユーザー ytftytft
提出日時 2022-11-02 14:44:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-07-17 04:07:05
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 88 ms
78,336 KB
testcase_03 AC 76 ms
77,056 KB
testcase_04 AC 78 ms
77,440 KB
testcase_05 AC 79 ms
76,928 KB
testcase_06 AC 83 ms
77,568 KB
testcase_07 AC 78 ms
77,312 KB
testcase_08 AC 85 ms
78,080 KB
testcase_09 AC 75 ms
75,904 KB
testcase_10 AC 43 ms
52,992 KB
testcase_11 AC 77 ms
76,672 KB
testcase_12 AC 88 ms
77,696 KB
testcase_13 AC 71 ms
72,064 KB
testcase_14 AC 73 ms
75,776 KB
testcase_15 AC 89 ms
77,696 KB
testcase_16 AC 84 ms
77,952 KB
testcase_17 AC 87 ms
78,080 KB
testcase_18 AC 97 ms
78,336 KB
testcase_19 AC 95 ms
78,336 KB
testcase_20 AC 85 ms
77,952 KB
testcase_21 AC 69 ms
73,728 KB
testcase_22 AC 86 ms
78,080 KB
testcase_23 AC 81 ms
77,952 KB
testcase_24 AC 83 ms
77,824 KB
testcase_25 AC 78 ms
77,804 KB
testcase_26 AC 86 ms
78,592 KB
testcase_27 AC 84 ms
77,952 KB
testcase_28 AC 81 ms
77,312 KB
testcase_29 AC 93 ms
78,208 KB
testcase_30 AC 89 ms
78,336 KB
testcase_31 AC 85 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,copy
input=lambda:sys.stdin.readline().rstrip()
def has(a):
	if a<10:
		return a
	temp=0
	while a>0:
		temp+=a%10
		a//=10
	return has(temp)
K=int(input())
N=int(input())
isPrime=[1 for i in range(N+1)]
primes=[]
for i in range(2,N+1):
	if isPrime[i]:
		for j in range(i*2,N+1,i):
			isPrime[j]=0
		if K<=i:
			primes.append(i)
P=[has(i) for i in primes]
big,cur,ans=0,1,0
count=[0 for i in range(10)]
for end in range(len(P)):
	count[P[end]]+=1
	while max(count)>1:
		count[P[big]]-=1
		big+=1
	if cur<=end-big+1:
		cur=end-big+1
		ans=big
print(primes[ans])
0