結果

問題 No.843 Triple Primes
ユーザー 山本信二山本信二
提出日時 2022-04-06 15:53:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,460 KB
最終ジャッジ日時 2024-11-27 19:02:55
合計ジャッジ時間 19,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
14,504 KB
testcase_01 AC 763 ms
16,236 KB
testcase_02 AC 81 ms
14,672 KB
testcase_03 AC 81 ms
14,592 KB
testcase_04 AC 85 ms
14,700 KB
testcase_05 AC 86 ms
14,520 KB
testcase_06 AC 84 ms
14,672 KB
testcase_07 AC 586 ms
16,000 KB
testcase_08 AC 699 ms
16,216 KB
testcase_09 AC 738 ms
16,256 KB
testcase_10 AC 708 ms
16,108 KB
testcase_11 AC 692 ms
16,256 KB
testcase_12 AC 714 ms
16,256 KB
testcase_13 AC 724 ms
16,348 KB
testcase_14 AC 698 ms
16,256 KB
testcase_15 AC 600 ms
16,128 KB
testcase_16 AC 593 ms
16,100 KB
testcase_17 AC 80 ms
14,688 KB
testcase_18 AC 82 ms
14,520 KB
testcase_19 AC 80 ms
14,592 KB
testcase_20 AC 193 ms
15,024 KB
testcase_21 AC 138 ms
14,776 KB
testcase_22 AC 438 ms
15,744 KB
testcase_23 AC 416 ms
15,744 KB
testcase_24 AC 216 ms
15,184 KB
testcase_25 AC 177 ms
14,912 KB
testcase_26 AC 763 ms
16,460 KB
testcase_27 AC 96 ms
14,720 KB
testcase_28 AC 747 ms
16,332 KB
testcase_29 AC 224 ms
15,052 KB
testcase_30 AC 730 ms
16,260 KB
testcase_31 AC 109 ms
14,656 KB
testcase_32 AC 91 ms
14,660 KB
testcase_33 AC 240 ms
15,232 KB
testcase_34 AC 360 ms
15,488 KB
testcase_35 AC 769 ms
16,384 KB
testcase_36 AC 168 ms
14,916 KB
testcase_37 AC 635 ms
16,000 KB
testcase_38 AC 468 ms
15,844 KB
testcase_39 AC 755 ms
16,256 KB
testcase_40 AC 82 ms
14,640 KB
testcase_41 AC 81 ms
14,516 KB
testcase_42 AC 652 ms
16,156 KB
testcase_43 AC 733 ms
16,216 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