結果

問題 No.843 Triple Primes
ユーザー 山本信二山本信二
提出日時 2022-04-06 15:53:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 899 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-05-05 18:51:15
合計ジャッジ時間 21,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
14,464 KB
testcase_01 AC 876 ms
16,512 KB
testcase_02 AC 101 ms
14,720 KB
testcase_03 AC 102 ms
14,840 KB
testcase_04 AC 105 ms
14,592 KB
testcase_05 AC 102 ms
14,824 KB
testcase_06 AC 104 ms
14,720 KB
testcase_07 AC 677 ms
16,104 KB
testcase_08 AC 773 ms
16,256 KB
testcase_09 AC 843 ms
16,256 KB
testcase_10 AC 716 ms
15,872 KB
testcase_11 AC 809 ms
16,256 KB
testcase_12 AC 827 ms
16,256 KB
testcase_13 AC 837 ms
16,256 KB
testcase_14 AC 815 ms
16,364 KB
testcase_15 AC 663 ms
15,872 KB
testcase_16 AC 702 ms
16,128 KB
testcase_17 AC 96 ms
14,720 KB
testcase_18 AC 98 ms
14,592 KB
testcase_19 AC 99 ms
14,800 KB
testcase_20 AC 236 ms
14,848 KB
testcase_21 AC 163 ms
14,976 KB
testcase_22 AC 445 ms
15,744 KB
testcase_23 AC 456 ms
15,488 KB
testcase_24 AC 240 ms
15,104 KB
testcase_25 AC 206 ms
15,104 KB
testcase_26 AC 844 ms
16,384 KB
testcase_27 AC 121 ms
14,592 KB
testcase_28 AC 833 ms
16,384 KB
testcase_29 AC 268 ms
14,976 KB
testcase_30 AC 859 ms
16,384 KB
testcase_31 AC 133 ms
14,592 KB
testcase_32 AC 113 ms
14,592 KB
testcase_33 AC 285 ms
15,104 KB
testcase_34 AC 421 ms
15,360 KB
testcase_35 AC 899 ms
16,128 KB
testcase_36 AC 191 ms
14,976 KB
testcase_37 AC 641 ms
15,744 KB
testcase_38 AC 516 ms
15,744 KB
testcase_39 AC 841 ms
16,256 KB
testcase_40 AC 94 ms
14,720 KB
testcase_41 AC 98 ms
14,720 KB
testcase_42 AC 735 ms
16,000 KB
testcase_43 AC 809 ms
16,384 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