結果

問題 No.843 Triple Primes
ユーザー suakiisuakii
提出日時 2021-04-28 10:33:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 934 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-07-07 05:04:38
合計ジャッジ時間 20,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
14,592 KB
testcase_01 AC 843 ms
16,384 KB
testcase_02 AC 89 ms
14,720 KB
testcase_03 AC 90 ms
14,592 KB
testcase_04 AC 94 ms
14,720 KB
testcase_05 AC 90 ms
14,720 KB
testcase_06 AC 90 ms
14,720 KB
testcase_07 AC 636 ms
16,000 KB
testcase_08 AC 724 ms
16,128 KB
testcase_09 AC 934 ms
16,256 KB
testcase_10 AC 701 ms
16,128 KB
testcase_11 AC 748 ms
16,128 KB
testcase_12 AC 808 ms
16,256 KB
testcase_13 AC 781 ms
16,384 KB
testcase_14 AC 776 ms
16,256 KB
testcase_15 AC 686 ms
16,000 KB
testcase_16 AC 668 ms
16,000 KB
testcase_17 AC 87 ms
14,592 KB
testcase_18 AC 88 ms
14,592 KB
testcase_19 AC 91 ms
14,720 KB
testcase_20 AC 219 ms
14,976 KB
testcase_21 AC 151 ms
14,976 KB
testcase_22 AC 434 ms
15,616 KB
testcase_23 AC 447 ms
15,616 KB
testcase_24 AC 224 ms
15,104 KB
testcase_25 AC 197 ms
15,104 KB
testcase_26 AC 876 ms
16,256 KB
testcase_27 AC 109 ms
14,592 KB
testcase_28 AC 802 ms
16,256 KB
testcase_29 AC 251 ms
15,232 KB
testcase_30 AC 778 ms
16,384 KB
testcase_31 AC 117 ms
14,720 KB
testcase_32 AC 104 ms
14,720 KB
testcase_33 AC 265 ms
15,232 KB
testcase_34 AC 402 ms
15,616 KB
testcase_35 AC 808 ms
16,256 KB
testcase_36 AC 186 ms
14,976 KB
testcase_37 AC 609 ms
16,128 KB
testcase_38 AC 512 ms
15,872 KB
testcase_39 AC 810 ms
16,384 KB
testcase_40 AC 87 ms
14,592 KB
testcase_41 AC 90 ms
14,592 KB
testcase_42 AC 721 ms
16,128 KB
testcase_43 AC 752 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
isPrime = [True]*500005

# print(isPrime)

def makePrime():
  isPrime[0] = False
  isPrime[1] = False

  n = int(math.sqrt(500005))


  for i in range(2, n+1):
      if (not isPrime[i]):
          continue
      for j in range(i*2, 500005, i):
          isPrime[j] = False


makePrime()
p = []
N = int(input())
for i in range(2, N+1):
    if isPrime[i]:
        p.append(i)

# print(p)
ans = 0

for i in range(len(p)):
    for j in range(len(p)):
        t = p[i] * p[i] - p[j]
        if (t < 1 or t > N):
            break
        if (isPrime[t]):
            ans += 1

print(ans)
0