結果

問題 No.12 限定された素数
ユーザー KudeKude
提出日時 2020-09-03 09:32:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 433 ms / 5,000 ms
コード長 778 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 115,584 KB
最終ジャッジ日時 2024-11-22 20:56:39
合計ジャッジ時間 11,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 389 ms
115,292 KB
testcase_01 AC 407 ms
114,812 KB
testcase_02 AC 373 ms
115,112 KB
testcase_03 AC 428 ms
114,884 KB
testcase_04 AC 386 ms
114,864 KB
testcase_05 AC 412 ms
115,584 KB
testcase_06 AC 402 ms
115,200 KB
testcase_07 AC 417 ms
115,016 KB
testcase_08 AC 392 ms
115,452 KB
testcase_09 AC 390 ms
115,200 KB
testcase_10 AC 415 ms
115,200 KB
testcase_11 AC 425 ms
115,200 KB
testcase_12 AC 416 ms
115,060 KB
testcase_13 AC 394 ms
115,408 KB
testcase_14 AC 411 ms
115,400 KB
testcase_15 AC 404 ms
115,144 KB
testcase_16 AC 433 ms
115,360 KB
testcase_17 AC 387 ms
115,200 KB
testcase_18 AC 382 ms
114,980 KB
testcase_19 AC 391 ms
115,188 KB
testcase_20 AC 386 ms
114,964 KB
testcase_21 AC 410 ms
115,172 KB
testcase_22 AC 383 ms
114,996 KB
testcase_23 AC 386 ms
114,800 KB
testcase_24 AC 394 ms
115,040 KB
testcase_25 AC 425 ms
115,368 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