結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 386 ms
114,712 KB
testcase_02 AC 361 ms
115,064 KB
testcase_03 AC 434 ms
115,024 KB
testcase_04 WA -
testcase_05 AC 404 ms
114,628 KB
testcase_06 AC 387 ms
114,864 KB
testcase_07 AC 405 ms
114,976 KB
testcase_08 WA -
testcase_09 AC 379 ms
115,132 KB
testcase_10 WA -
testcase_11 AC 447 ms
114,964 KB
testcase_12 AC 409 ms
114,772 KB
testcase_13 AC 386 ms
114,840 KB
testcase_14 WA -
testcase_15 AC 391 ms
115,096 KB
testcase_16 AC 417 ms
114,664 KB
testcase_17 AC 370 ms
114,764 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