結果

問題 No.732 3PrimeCounting
ユーザー titiatitia
提出日時 2023-05-18 00:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,682 ms / 3,000 ms
コード長 704 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-05-09 07:46:50
合計ジャッジ時間 24,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 42 ms
53,504 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 45 ms
53,888 KB
testcase_08 AC 41 ms
54,112 KB
testcase_09 AC 41 ms
53,888 KB
testcase_10 AC 43 ms
54,144 KB
testcase_11 AC 43 ms
54,016 KB
testcase_12 AC 42 ms
54,272 KB
testcase_13 AC 42 ms
53,888 KB
testcase_14 AC 42 ms
53,760 KB
testcase_15 AC 42 ms
54,016 KB
testcase_16 AC 41 ms
54,016 KB
testcase_17 AC 46 ms
54,144 KB
testcase_18 AC 42 ms
53,760 KB
testcase_19 AC 41 ms
54,016 KB
testcase_20 AC 57 ms
63,360 KB
testcase_21 AC 62 ms
65,280 KB
testcase_22 AC 59 ms
65,152 KB
testcase_23 AC 50 ms
60,672 KB
testcase_24 AC 49 ms
60,544 KB
testcase_25 AC 65 ms
64,896 KB
testcase_26 AC 62 ms
64,768 KB
testcase_27 AC 56 ms
63,672 KB
testcase_28 AC 56 ms
63,488 KB
testcase_29 AC 59 ms
64,640 KB
testcase_30 AC 59 ms
64,640 KB
testcase_31 AC 61 ms
64,640 KB
testcase_32 AC 63 ms
65,024 KB
testcase_33 AC 63 ms
64,896 KB
testcase_34 AC 62 ms
64,768 KB
testcase_35 AC 59 ms
64,768 KB
testcase_36 AC 59 ms
65,024 KB
testcase_37 AC 53 ms
62,464 KB
testcase_38 AC 52 ms
62,336 KB
testcase_39 AC 61 ms
65,280 KB
testcase_40 AC 60 ms
65,024 KB
testcase_41 AC 60 ms
65,024 KB
testcase_42 AC 61 ms
65,280 KB
testcase_43 AC 58 ms
65,152 KB
testcase_44 AC 57 ms
64,640 KB
testcase_45 AC 54 ms
63,744 KB
testcase_46 AC 53 ms
63,744 KB
testcase_47 AC 58 ms
64,896 KB
testcase_48 AC 63 ms
64,896 KB
testcase_49 AC 62 ms
65,408 KB
testcase_50 AC 57 ms
65,152 KB
testcase_51 AC 59 ms
65,084 KB
testcase_52 AC 54 ms
63,744 KB
testcase_53 AC 80 ms
65,664 KB
testcase_54 AC 593 ms
68,736 KB
testcase_55 AC 603 ms
69,248 KB
testcase_56 AC 603 ms
69,376 KB
testcase_57 AC 143 ms
66,560 KB
testcase_58 AC 143 ms
66,688 KB
testcase_59 AC 84 ms
65,792 KB
testcase_60 AC 193 ms
66,432 KB
testcase_61 AC 192 ms
66,560 KB
testcase_62 AC 773 ms
69,760 KB
testcase_63 AC 340 ms
67,584 KB
testcase_64 AC 241 ms
67,200 KB
testcase_65 AC 235 ms
67,328 KB
testcase_66 AC 47 ms
60,672 KB
testcase_67 AC 47 ms
60,672 KB
testcase_68 AC 670 ms
68,992 KB
testcase_69 AC 673 ms
69,120 KB
testcase_70 AC 613 ms
68,736 KB
testcase_71 AC 602 ms
68,736 KB
testcase_72 AC 314 ms
67,704 KB
testcase_73 AC 1,250 ms
71,424 KB
testcase_74 AC 1,256 ms
71,168 KB
testcase_75 AC 61 ms
65,024 KB
testcase_76 AC 660 ms
69,504 KB
testcase_77 AC 152 ms
66,560 KB
testcase_78 AC 970 ms
70,016 KB
testcase_79 AC 686 ms
69,504 KB
testcase_80 AC 882 ms
70,136 KB
testcase_81 AC 617 ms
68,736 KB
testcase_82 AC 53 ms
63,360 KB
testcase_83 AC 148 ms
66,560 KB
testcase_84 AC 162 ms
66,560 KB
testcase_85 AC 521 ms
68,736 KB
testcase_86 AC 908 ms
69,760 KB
testcase_87 AC 1,682 ms
72,192 KB
testcase_88 AC 1,682 ms
72,448 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