結果

問題 No.6 使いものにならないハッシュ
ユーザー colognecologne
提出日時 2022-01-20 15:30:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,376 KB
最終ジャッジ日時 2024-11-23 20:16:28
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 61 ms
69,376 KB
testcase_03 AC 55 ms
63,232 KB
testcase_04 AC 56 ms
63,104 KB
testcase_05 AC 56 ms
64,384 KB
testcase_06 AC 64 ms
66,304 KB
testcase_07 AC 62 ms
64,256 KB
testcase_08 AC 59 ms
65,408 KB
testcase_09 AC 61 ms
65,024 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 53 ms
63,360 KB
testcase_12 AC 56 ms
66,064 KB
testcase_13 AC 57 ms
64,384 KB
testcase_14 AC 57 ms
64,384 KB
testcase_15 AC 56 ms
65,280 KB
testcase_16 AC 58 ms
65,536 KB
testcase_17 AC 60 ms
68,352 KB
testcase_18 AC 61 ms
68,352 KB
testcase_19 AC 60 ms
66,688 KB
testcase_20 AC 59 ms
66,304 KB
testcase_21 AC 52 ms
61,696 KB
testcase_22 AC 59 ms
67,328 KB
testcase_23 AC 58 ms
66,816 KB
testcase_24 AC 58 ms
66,176 KB
testcase_25 AC 57 ms
65,408 KB
testcase_26 AC 62 ms
68,096 KB
testcase_27 AC 58 ms
66,432 KB
testcase_28 AC 55 ms
64,896 KB
testcase_29 AC 60 ms
67,584 KB
testcase_30 AC 60 ms
67,840 KB
testcase_31 AC 58 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

input = sys.stdin.readline

def main():
    K = int(input())
    N = int(input())

    sieve = [True] * (N+1)

    primes = []

    for i in range(2, N+1):
        if sieve[i]:
            if i >= K: primes.append(i)
            for j in range(i*i, N+1, i):
                sieve[j] = False

    maxv = 0

    for i in range(len(primes)-1, -1, -1):
        vis = [False]*9

        for j in range(i, len(primes)):
            if not vis[primes[j]%9]:
                vis[primes[j]%9] = True
                if maxv < j-i+1:
                    maxv = j-i+1
                    ans = primes[i]
            else:
                break

    print(ans)


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