結果

問題 No.843 Triple Primes
ユーザー るこーそーるこーそー
提出日時 2024-09-09 12:55:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 69,852 KB
最終ジャッジ日時 2024-09-09 12:55:15
合計ジャッジ時間 4,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,896 KB
testcase_01 AC 71 ms
68,420 KB
testcase_02 AC 52 ms
64,596 KB
testcase_03 AC 50 ms
63,216 KB
testcase_04 AC 53 ms
64,512 KB
testcase_05 AC 51 ms
62,100 KB
testcase_06 AC 52 ms
63,156 KB
testcase_07 AC 68 ms
67,428 KB
testcase_08 AC 68 ms
68,628 KB
testcase_09 AC 70 ms
68,760 KB
testcase_10 AC 76 ms
69,316 KB
testcase_11 AC 69 ms
68,332 KB
testcase_12 AC 69 ms
68,160 KB
testcase_13 AC 69 ms
68,808 KB
testcase_14 AC 69 ms
68,296 KB
testcase_15 AC 66 ms
68,236 KB
testcase_16 AC 67 ms
67,820 KB
testcase_17 AC 44 ms
54,416 KB
testcase_18 AC 43 ms
54,136 KB
testcase_19 AC 43 ms
55,464 KB
testcase_20 AC 58 ms
64,540 KB
testcase_21 AC 55 ms
64,496 KB
testcase_22 AC 63 ms
67,632 KB
testcase_23 AC 63 ms
67,728 KB
testcase_24 AC 57 ms
65,888 KB
testcase_25 AC 57 ms
64,112 KB
testcase_26 AC 100 ms
69,196 KB
testcase_27 AC 54 ms
63,800 KB
testcase_28 AC 70 ms
68,056 KB
testcase_29 AC 59 ms
64,660 KB
testcase_30 AC 70 ms
68,928 KB
testcase_31 AC 54 ms
64,184 KB
testcase_32 AC 53 ms
63,552 KB
testcase_33 AC 60 ms
65,148 KB
testcase_34 AC 63 ms
65,564 KB
testcase_35 AC 73 ms
69,716 KB
testcase_36 AC 56 ms
64,588 KB
testcase_37 AC 67 ms
68,104 KB
testcase_38 AC 66 ms
67,156 KB
testcase_39 AC 70 ms
69,852 KB
testcase_40 AC 43 ms
54,272 KB
testcase_41 AC 43 ms
55,800 KB
testcase_42 AC 69 ms
67,652 KB
testcase_43 AC 69 ms
68,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
def MillerRabin(n,k=20):
  if n==2:return True
  if n<2 or n%2==0:return False
  s,d=0,n-1
  while d&1==0:
    s+=1
    d>>=1
  for _ in range(k):
    a=random.randint(1,n-1)
    x=pow(a,d,n)
    if x!=1 and x!=n-1:
      for __ in range(s):
        x=pow(x,2,n)
        if x==n-1:break 
      else:return False
  return True

n=int(input())
primes=[True]*(n+1)
primes[0]=primes[1]=False
for p in range(2,n+1):
  if primes[p]:
    for q in range(2*p,n+1,p):
      primes[q]=False

ans=1
for r in range(3,n):
  if r*r-2>n:break
  if primes[r] and primes[r*r-2]:
    ans+=2

print(ans if n>1 else 0)
0