結果

問題 No.732 3PrimeCounting
ユーザー titiatitia
提出日時 2023-05-18 00:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,516 ms / 3,000 ms
コード長 704 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-12-15 18:42:51
合計ジャッジ時間 21,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,888 KB
testcase_01 AC 36 ms
53,760 KB
testcase_02 AC 35 ms
53,760 KB
testcase_03 AC 35 ms
53,632 KB
testcase_04 AC 34 ms
53,504 KB
testcase_05 AC 34 ms
53,888 KB
testcase_06 AC 35 ms
53,888 KB
testcase_07 AC 37 ms
53,888 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 36 ms
54,272 KB
testcase_10 AC 36 ms
53,504 KB
testcase_11 AC 35 ms
53,504 KB
testcase_12 AC 34 ms
54,144 KB
testcase_13 AC 35 ms
53,632 KB
testcase_14 AC 35 ms
53,760 KB
testcase_15 AC 35 ms
53,760 KB
testcase_16 AC 35 ms
53,888 KB
testcase_17 AC 35 ms
53,888 KB
testcase_18 AC 37 ms
53,760 KB
testcase_19 AC 34 ms
53,888 KB
testcase_20 AC 44 ms
63,232 KB
testcase_21 AC 48 ms
64,640 KB
testcase_22 AC 49 ms
64,768 KB
testcase_23 AC 40 ms
60,544 KB
testcase_24 AC 40 ms
60,928 KB
testcase_25 AC 54 ms
65,024 KB
testcase_26 AC 51 ms
65,280 KB
testcase_27 AC 46 ms
63,488 KB
testcase_28 AC 48 ms
63,488 KB
testcase_29 AC 52 ms
64,768 KB
testcase_30 AC 50 ms
64,768 KB
testcase_31 AC 51 ms
64,640 KB
testcase_32 AC 52 ms
64,768 KB
testcase_33 AC 53 ms
64,896 KB
testcase_34 AC 54 ms
65,152 KB
testcase_35 AC 49 ms
65,152 KB
testcase_36 AC 49 ms
65,036 KB
testcase_37 AC 43 ms
62,720 KB
testcase_38 AC 43 ms
62,464 KB
testcase_39 AC 49 ms
64,896 KB
testcase_40 AC 50 ms
64,640 KB
testcase_41 AC 51 ms
64,640 KB
testcase_42 AC 52 ms
65,024 KB
testcase_43 AC 50 ms
64,896 KB
testcase_44 AC 48 ms
65,024 KB
testcase_45 AC 47 ms
63,744 KB
testcase_46 AC 45 ms
63,872 KB
testcase_47 AC 47 ms
64,768 KB
testcase_48 AC 53 ms
64,896 KB
testcase_49 AC 54 ms
65,408 KB
testcase_50 AC 51 ms
64,768 KB
testcase_51 AC 52 ms
64,896 KB
testcase_52 AC 48 ms
64,000 KB
testcase_53 AC 71 ms
65,408 KB
testcase_54 AC 526 ms
68,608 KB
testcase_55 AC 537 ms
69,120 KB
testcase_56 AC 537 ms
69,120 KB
testcase_57 AC 124 ms
66,432 KB
testcase_58 AC 122 ms
66,176 KB
testcase_59 AC 71 ms
65,408 KB
testcase_60 AC 177 ms
67,200 KB
testcase_61 AC 165 ms
66,688 KB
testcase_62 AC 702 ms
69,504 KB
testcase_63 AC 297 ms
67,712 KB
testcase_64 AC 209 ms
66,944 KB
testcase_65 AC 205 ms
67,200 KB
testcase_66 AC 41 ms
60,288 KB
testcase_67 AC 39 ms
60,832 KB
testcase_68 AC 605 ms
69,504 KB
testcase_69 AC 615 ms
69,504 KB
testcase_70 AC 539 ms
68,864 KB
testcase_71 AC 536 ms
68,608 KB
testcase_72 AC 272 ms
67,768 KB
testcase_73 AC 1,099 ms
71,296 KB
testcase_74 AC 1,096 ms
71,296 KB
testcase_75 AC 52 ms
65,148 KB
testcase_76 AC 585 ms
68,992 KB
testcase_77 AC 131 ms
66,560 KB
testcase_78 AC 858 ms
70,144 KB
testcase_79 AC 609 ms
69,248 KB
testcase_80 AC 772 ms
69,760 KB
testcase_81 AC 540 ms
68,864 KB
testcase_82 AC 46 ms
63,360 KB
testcase_83 AC 130 ms
66,048 KB
testcase_84 AC 144 ms
66,560 KB
testcase_85 AC 450 ms
68,864 KB
testcase_86 AC 779 ms
69,632 KB
testcase_87 AC 1,498 ms
72,576 KB
testcase_88 AC 1,516 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N=int(input())

x=N*3

# x以下の素数の列挙,素因数分解,約数の列挙
    
import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]

COUNT=[0]*(N*3+1)
ANS=0

for i in range(len(Primes)):
    if Primes[i]>N:
        break
    for j in range(len(Primes)):
        ANS+=COUNT[Primes[j]-Primes[i]]

    for j in range(i):
        COUNT[Primes[i]+Primes[j]]+=1

print(ANS)
0