結果

問題 No.6 使いものにならないハッシュ
ユーザー 双六双六
提出日時 2020-07-25 23:58:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 1,090 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,144 KB
最終ジャッジ日時 2024-09-16 16:58:05
合計ジャッジ時間 4,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
78,648 KB
testcase_01 AC 105 ms
78,464 KB
testcase_02 AC 111 ms
78,592 KB
testcase_03 AC 100 ms
78,824 KB
testcase_04 AC 102 ms
79,104 KB
testcase_05 AC 102 ms
78,664 KB
testcase_06 AC 103 ms
78,724 KB
testcase_07 AC 100 ms
78,732 KB
testcase_08 AC 101 ms
78,592 KB
testcase_09 AC 101 ms
78,748 KB
testcase_10 AC 92 ms
78,588 KB
testcase_11 AC 96 ms
78,848 KB
testcase_12 AC 100 ms
78,976 KB
testcase_13 AC 97 ms
79,104 KB
testcase_14 AC 97 ms
78,848 KB
testcase_15 AC 97 ms
78,720 KB
testcase_16 AC 98 ms
78,848 KB
testcase_17 AC 100 ms
78,720 KB
testcase_18 AC 98 ms
78,752 KB
testcase_19 AC 100 ms
78,788 KB
testcase_20 AC 102 ms
78,592 KB
testcase_21 AC 97 ms
78,848 KB
testcase_22 AC 100 ms
78,592 KB
testcase_23 AC 99 ms
78,876 KB
testcase_24 AC 102 ms
78,592 KB
testcase_25 AC 102 ms
78,608 KB
testcase_26 AC 98 ms
78,848 KB
testcase_27 AC 99 ms
78,592 KB
testcase_28 AC 97 ms
78,720 KB
testcase_29 AC 99 ms
78,848 KB
testcase_30 AC 99 ms
78,848 KB
testcase_31 AC 101 ms
79,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 2 * 10 ** 5 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

def hashing(N):
	while N >= 10:
		N = sum(list(map(int, list(str(N)))))

	return N

#処理内容
def main():
	K = int(input())
	N = int(input())
	hashlist = []
	for i in plist:
		x = hashing(i)
		hashlist.append(x)

	M = len(plist)
	# print(hashlist)
	itr = None
	for i in range(M):
		if plist[i] >= K:
			itr = i
			break

	# 尺取り
	D = [0] * 10
	length = 0
	ans = 0
	val = 0
	j = itr
	while itr < M:
		h = hashlist[itr]
		if plist[itr] > N:
			break
		if D[h] == 0:
			D[h] += 1
			val += 1
			itr += 1
		else:
			D[hashlist[j]] -= 1
			val -= 1
			j += 1
		if val >= length:
			length = val
			ans = plist[j]

	print(ans)

if __name__ == '__main__':
	main()
0