結果

問題 No.6 使いものにならないハッシュ
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-22 18:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 74,064 KB
最終ジャッジ日時 2024-10-10 16:42:00
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,744 KB
testcase_01 AC 37 ms
53,484 KB
testcase_02 AC 61 ms
67,556 KB
testcase_03 AC 56 ms
66,000 KB
testcase_04 AC 58 ms
67,052 KB
testcase_05 AC 59 ms
67,484 KB
testcase_06 AC 66 ms
71,580 KB
testcase_07 AC 62 ms
68,644 KB
testcase_08 AC 67 ms
70,016 KB
testcase_09 AC 61 ms
67,692 KB
testcase_10 AC 36 ms
52,832 KB
testcase_11 AC 58 ms
66,172 KB
testcase_12 AC 72 ms
73,192 KB
testcase_13 AC 61 ms
66,940 KB
testcase_14 AC 60 ms
66,312 KB
testcase_15 AC 66 ms
70,136 KB
testcase_16 AC 63 ms
68,792 KB
testcase_17 AC 70 ms
72,012 KB
testcase_18 AC 74 ms
73,096 KB
testcase_19 AC 67 ms
71,616 KB
testcase_20 AC 69 ms
70,908 KB
testcase_21 AC 55 ms
66,232 KB
testcase_22 AC 70 ms
72,152 KB
testcase_23 AC 71 ms
72,624 KB
testcase_24 AC 69 ms
72,504 KB
testcase_25 AC 62 ms
69,224 KB
testcase_26 AC 74 ms
73,336 KB
testcase_27 AC 67 ms
70,844 KB
testcase_28 AC 61 ms
68,260 KB
testcase_29 AC 71 ms
74,064 KB
testcase_30 AC 69 ms
71,908 KB
testcase_31 AC 71 ms
71,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stderr

K = int(input())
N = int(input())

isprime = [True] * (N + 1)
isprime[0] = isprime[1] = False
for i in range(2, N + 1):
	if isprime[i]:
		for j in range(i * 2, N + 1, i):
			isprime[j] = False

maxlen = len = 0
bkt = [-1] * 10
ans = 0

for i in range(K, N + 1):
	if not isprime[i]:
		continue
	h = i % 9
	if bkt[h] != -1:
		rem = bkt[h]
		for j in range(10):
			if 0 <= bkt[j] <= rem:
				bkt[j] = -1
				len -= 1
	bkt[h] = i
	len += 1
	if len >= maxlen:
		ans = min(v for v in bkt if v >= 0)
		maxlen = len

print(ans)
0