結果

問題 No.6 使いものにならないハッシュ
ユーザー square1001square1001
提出日時 2022-02-17 10:51:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-29 07:32:00
合計ジャッジ時間 4,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 187 ms
12,928 KB
testcase_03 AC 55 ms
11,008 KB
testcase_04 AC 73 ms
11,392 KB
testcase_05 AC 74 ms
11,264 KB
testcase_06 AC 120 ms
12,160 KB
testcase_07 AC 101 ms
11,904 KB
testcase_08 AC 117 ms
12,032 KB
testcase_09 AC 122 ms
12,288 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 57 ms
11,008 KB
testcase_12 AC 137 ms
12,288 KB
testcase_13 AC 111 ms
12,032 KB
testcase_14 AC 115 ms
12,160 KB
testcase_15 AC 113 ms
11,904 KB
testcase_16 AC 122 ms
12,160 KB
testcase_17 AC 162 ms
12,672 KB
testcase_18 AC 176 ms
12,928 KB
testcase_19 AC 158 ms
12,672 KB
testcase_20 AC 136 ms
12,288 KB
testcase_21 AC 46 ms
10,880 KB
testcase_22 AC 145 ms
12,416 KB
testcase_23 AC 137 ms
12,288 KB
testcase_24 AC 136 ms
12,288 KB
testcase_25 AC 105 ms
12,032 KB
testcase_26 AC 159 ms
12,544 KB
testcase_27 AC 137 ms
12,416 KB
testcase_28 AC 93 ms
11,648 KB
testcase_29 AC 163 ms
12,800 KB
testcase_30 AC 144 ms
12,416 KB
testcase_31 AC 142 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
R = int(input())

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

maxlen = 0
answer = -1
plist = list(filter(lambda x: prime[x], range(L, R + 1)))
for i in range(len(plist)):
	bit = 0
	pos = i
	while pos < len(plist):
		if ((bit >> (plist[pos] % 9)) & 1) == 1:
			break
		bit |= 1 << (plist[pos] % 9)
		pos += 1
	if maxlen <= pos - i:
		maxlen = pos - i
		answer = plist[i]

print(answer)
0