結果

問題 No.12 限定された素数
ユーザー KudeKude
提出日時 2020-09-03 09:28:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,456 KB
最終ジャッジ日時 2024-05-02 08:21:17
合計ジャッジ時間 12,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 392 ms
114,944 KB
testcase_02 AC 357 ms
114,816 KB
testcase_03 AC 451 ms
114,816 KB
testcase_04 WA -
testcase_05 AC 411 ms
115,200 KB
testcase_06 AC 404 ms
114,944 KB
testcase_07 AC 424 ms
114,944 KB
testcase_08 WA -
testcase_09 AC 407 ms
115,072 KB
testcase_10 WA -
testcase_11 AC 441 ms
114,944 KB
testcase_12 AC 435 ms
114,944 KB
testcase_13 AC 411 ms
114,944 KB
testcase_14 WA -
testcase_15 AC 412 ms
114,688 KB
testcase_16 AC 433 ms
114,944 KB
testcase_17 AC 373 ms
114,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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
        else:
            for x in map(int, str(p)):
                d[x] = True
print(ans)
0