結果

問題 No.12 限定された素数
ユーザー KudeKude
提出日時 2020-09-03 09:32:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 5,000 ms
コード長 778 bytes
コンパイル時間 1,282 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 115,456 KB
最終ジャッジ日時 2024-05-02 08:22:09
合計ジャッジ時間 12,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
114,816 KB
testcase_01 AC 402 ms
115,456 KB
testcase_02 AC 379 ms
115,328 KB
testcase_03 AC 426 ms
114,560 KB
testcase_04 AC 380 ms
115,036 KB
testcase_05 AC 435 ms
115,200 KB
testcase_06 AC 409 ms
115,308 KB
testcase_07 AC 419 ms
114,944 KB
testcase_08 AC 395 ms
115,328 KB
testcase_09 AC 389 ms
114,816 KB
testcase_10 AC 414 ms
115,328 KB
testcase_11 AC 412 ms
115,200 KB
testcase_12 AC 403 ms
115,072 KB
testcase_13 AC 404 ms
115,072 KB
testcase_14 AC 400 ms
115,416 KB
testcase_15 AC 396 ms
114,944 KB
testcase_16 AC 428 ms
115,200 KB
testcase_17 AC 388 ms
114,688 KB
testcase_18 AC 376 ms
114,964 KB
testcase_19 AC 376 ms
114,968 KB
testcase_20 AC 382 ms
114,944 KB
testcase_21 AC 408 ms
115,328 KB
testcase_22 AC 386 ms
115,072 KB
testcase_23 AC 398 ms
114,816 KB
testcase_24 AC 400 ms
114,816 KB
testcase_25 AC 434 ms
115,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

a = [False] * 10
for x in map(int, input().split()):
    a[x] = True

sieve = [True] * 5000002
ans = -1
k = 1
d = [False] * 10
for p in range(2, 5000002):
    if sieve[p] or p == 5000001:
        for i in range(p * p, 5000002, p):
            sieve[i] = False
        if p < 5000001:
            ok = True
            for x in map(int, str(p)):
                if not a[x]:
                    ok = False
                    break
        if not ok or p == 5000001:
            for i in range(10):
                if a[i] != d[i]:
                    break
            else:
                ans = max(ans, p - 1 - k)
            k = p + 1
            d = [False] * 10
        else:
            for x in map(int, str(p)):
                d[x] = True
print(ans)
0