結果

問題 No.732 3PrimeCounting
ユーザー PNJPNJ
提出日時 2023-11-21 05:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 516 ms / 3,000 ms
コード長 616 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 76,572 KB
最終ジャッジ日時 2024-09-26 07:01:04
合計ジャッジ時間 13,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
72,080 KB
testcase_01 AC 56 ms
72,608 KB
testcase_02 AC 60 ms
72,192 KB
testcase_03 AC 59 ms
72,164 KB
testcase_04 AC 60 ms
72,852 KB
testcase_05 AC 60 ms
72,608 KB
testcase_06 AC 58 ms
72,276 KB
testcase_07 AC 59 ms
71,732 KB
testcase_08 AC 59 ms
71,880 KB
testcase_09 AC 59 ms
72,552 KB
testcase_10 AC 58 ms
71,660 KB
testcase_11 AC 62 ms
71,800 KB
testcase_12 AC 61 ms
72,180 KB
testcase_13 AC 59 ms
72,104 KB
testcase_14 AC 59 ms
71,380 KB
testcase_15 AC 60 ms
72,204 KB
testcase_16 AC 61 ms
72,200 KB
testcase_17 AC 61 ms
71,496 KB
testcase_18 AC 60 ms
71,956 KB
testcase_19 AC 59 ms
72,152 KB
testcase_20 AC 62 ms
73,972 KB
testcase_21 AC 62 ms
73,948 KB
testcase_22 AC 66 ms
74,168 KB
testcase_23 AC 62 ms
72,388 KB
testcase_24 AC 61 ms
72,436 KB
testcase_25 AC 66 ms
74,184 KB
testcase_26 AC 65 ms
74,436 KB
testcase_27 AC 63 ms
72,784 KB
testcase_28 AC 63 ms
73,352 KB
testcase_29 AC 64 ms
74,312 KB
testcase_30 AC 63 ms
74,440 KB
testcase_31 AC 64 ms
74,100 KB
testcase_32 AC 65 ms
73,832 KB
testcase_33 AC 67 ms
74,612 KB
testcase_34 AC 68 ms
75,612 KB
testcase_35 AC 65 ms
74,436 KB
testcase_36 AC 67 ms
74,456 KB
testcase_37 AC 66 ms
73,432 KB
testcase_38 AC 64 ms
72,852 KB
testcase_39 AC 64 ms
73,892 KB
testcase_40 AC 65 ms
74,628 KB
testcase_41 AC 67 ms
75,276 KB
testcase_42 AC 67 ms
75,236 KB
testcase_43 AC 66 ms
74,704 KB
testcase_44 AC 64 ms
73,764 KB
testcase_45 AC 63 ms
73,448 KB
testcase_46 AC 63 ms
73,712 KB
testcase_47 AC 64 ms
74,428 KB
testcase_48 AC 68 ms
74,788 KB
testcase_49 AC 65 ms
74,136 KB
testcase_50 AC 64 ms
74,076 KB
testcase_51 AC 63 ms
74,112 KB
testcase_52 AC 62 ms
73,508 KB
testcase_53 AC 71 ms
73,948 KB
testcase_54 AC 202 ms
75,196 KB
testcase_55 AC 203 ms
75,644 KB
testcase_56 AC 210 ms
75,004 KB
testcase_57 AC 91 ms
75,720 KB
testcase_58 AC 90 ms
75,808 KB
testcase_59 AC 72 ms
74,140 KB
testcase_60 AC 102 ms
74,112 KB
testcase_61 AC 110 ms
74,500 KB
testcase_62 AC 256 ms
75,132 KB
testcase_63 AC 142 ms
75,452 KB
testcase_64 AC 117 ms
75,368 KB
testcase_65 AC 113 ms
74,228 KB
testcase_66 AC 59 ms
72,232 KB
testcase_67 AC 60 ms
72,724 KB
testcase_68 AC 222 ms
75,588 KB
testcase_69 AC 225 ms
76,064 KB
testcase_70 AC 210 ms
75,064 KB
testcase_71 AC 214 ms
74,596 KB
testcase_72 AC 137 ms
74,440 KB
testcase_73 AC 395 ms
76,572 KB
testcase_74 AC 391 ms
74,824 KB
testcase_75 AC 68 ms
74,944 KB
testcase_76 AC 224 ms
75,500 KB
testcase_77 AC 90 ms
75,820 KB
testcase_78 AC 305 ms
75,584 KB
testcase_79 AC 233 ms
74,780 KB
testcase_80 AC 275 ms
75,672 KB
testcase_81 AC 239 ms
75,256 KB
testcase_82 AC 91 ms
73,552 KB
testcase_83 AC 107 ms
74,060 KB
testcase_84 AC 116 ms
75,120 KB
testcase_85 AC 205 ms
74,488 KB
testcase_86 AC 285 ms
75,784 KB
testcase_87 AC 516 ms
75,188 KB
testcase_88 AC 502 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
def Eratosthenes(N):
  is_prime = [1 for i in range(N+1)]
  is_prime[0] = is_prime[1] = 0
  P = []
  for p in range(2,N+1):
    if is_prime[p] == 0:
      continue
    P.append(p)
    for d in range(2,N//p+1):
      q = p*d
      is_prime[q] = 0
  return P

N = int(input())
P = Eratosthenes(300000)
P = P[::-1]
cout = [0 for i in range(300001)]
Q = []
ans = 0
m = 0
while len(P):
  c = P.pop()
  if c > N:
    break
  for p in reversed(P):
    if p - c > m:
      break
    ans += cout[p-c]
  for p in Q:
    cout[p+c] += 1
  if c >= 3:
    m = Q[-1] + c
  Q.append(c)
print(ans)
0