結果
問題 | No.12 限定された素数 |
ユーザー | square1001 |
提出日時 | 2022-02-17 11:53:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 876 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 63,616 KB |
最終ジャッジ日時 | 2024-06-29 07:36:38 |
合計ジャッジ時間 | 123,216 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4,423 ms
63,616 KB |
testcase_01 | AC | 4,499 ms
63,360 KB |
testcase_02 | AC | 4,441 ms
63,588 KB |
testcase_03 | AC | 4,699 ms
63,616 KB |
testcase_04 | AC | 4,531 ms
63,616 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 4,508 ms
63,360 KB |
testcase_07 | AC | 4,560 ms
63,360 KB |
testcase_08 | AC | 4,509 ms
63,488 KB |
testcase_09 | AC | 4,506 ms
63,484 KB |
testcase_10 | AC | 4,427 ms
63,476 KB |
testcase_11 | AC | 4,560 ms
63,540 KB |
testcase_12 | AC | 4,488 ms
63,476 KB |
testcase_13 | AC | 4,402 ms
63,488 KB |
testcase_14 | AC | 4,443 ms
63,616 KB |
testcase_15 | AC | 4,504 ms
63,480 KB |
testcase_16 | AC | 4,434 ms
63,488 KB |
testcase_17 | AC | 4,418 ms
63,488 KB |
testcase_18 | AC | 4,475 ms
63,488 KB |
testcase_19 | AC | 4,456 ms
63,616 KB |
testcase_20 | AC | 4,503 ms
63,476 KB |
testcase_21 | AC | 4,485 ms
63,616 KB |
testcase_22 | AC | 4,404 ms
63,488 KB |
testcase_23 | AC | 4,404 ms
63,488 KB |
testcase_24 | AC | 4,447 ms
63,428 KB |
testcase_25 | AC | 4,457 ms
63,488 KB |
ソースコード
# Input M = int(input()) A = list(map(int, input().split())) bit = sum(2 ** x for x in A) # Eratosthenes' sieve LIMIT = 5000000 prime = [ False ] * (LIMIT + 1) prime[2] = True for i in range(3, LIMIT + 1, 2): prime[i] = True for i in range(3, LIMIT + 1, 2): if prime[i]: for j in range(i * i, LIMIT + 1, 2 * i): prime[j] = False plist = list(filter(lambda x: prime[x], range(2, LIMIT + 1))) # Calculation K = len(plist) recent = [ -1 ] * 10 answer = -1 for i in range(K): x = plist[i] while x > 0: recent[x % 10] = i x //= 10 recmin, recmax = i + 1, -1 for j in range(10): if ((bit >> j) & 1) == 1: recmin = min(recmin, recent[j]) else: recmax = max(recmax, recent[j]) if recmax < recmin: truel = (plist[recmax] + 1 if recmax != -1 else 1) truer = (plist[i + 1] - 1 if i != K - 1 else LIMIT) answer = max(answer, truer - truel) print(answer)