結果

問題 No.732 3PrimeCounting
ユーザー PNJPNJ
提出日時 2023-11-21 05:16:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 116,180 KB
最終ジャッジ日時 2024-09-26 06:59:13
合計ジャッジ時間 44,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,736 KB
testcase_01 AC 57 ms
71,068 KB
testcase_02 AC 57 ms
70,032 KB
testcase_03 AC 54 ms
69,444 KB
testcase_04 AC 54 ms
70,184 KB
testcase_05 AC 55 ms
69,816 KB
testcase_06 AC 55 ms
70,060 KB
testcase_07 AC 53 ms
70,196 KB
testcase_08 AC 57 ms
71,604 KB
testcase_09 AC 59 ms
69,624 KB
testcase_10 AC 55 ms
70,844 KB
testcase_11 AC 55 ms
70,388 KB
testcase_12 AC 57 ms
71,160 KB
testcase_13 AC 57 ms
70,484 KB
testcase_14 AC 54 ms
70,284 KB
testcase_15 AC 55 ms
69,456 KB
testcase_16 AC 55 ms
70,516 KB
testcase_17 AC 58 ms
69,968 KB
testcase_18 AC 58 ms
70,428 KB
testcase_19 AC 57 ms
70,144 KB
testcase_20 AC 62 ms
73,844 KB
testcase_21 AC 69 ms
76,552 KB
testcase_22 AC 70 ms
77,804 KB
testcase_23 AC 58 ms
71,004 KB
testcase_24 AC 59 ms
70,784 KB
testcase_25 AC 83 ms
80,588 KB
testcase_26 AC 74 ms
77,688 KB
testcase_27 AC 65 ms
74,548 KB
testcase_28 AC 65 ms
75,216 KB
testcase_29 AC 70 ms
76,156 KB
testcase_30 AC 72 ms
76,472 KB
testcase_31 AC 70 ms
76,588 KB
testcase_32 AC 73 ms
77,152 KB
testcase_33 AC 74 ms
77,332 KB
testcase_34 AC 77 ms
77,164 KB
testcase_35 AC 71 ms
76,460 KB
testcase_36 AC 74 ms
76,820 KB
testcase_37 AC 62 ms
73,268 KB
testcase_38 AC 61 ms
72,604 KB
testcase_39 AC 72 ms
77,036 KB
testcase_40 AC 73 ms
77,184 KB
testcase_41 AC 72 ms
76,628 KB
testcase_42 AC 70 ms
78,124 KB
testcase_43 AC 69 ms
76,048 KB
testcase_44 AC 69 ms
75,688 KB
testcase_45 AC 65 ms
74,212 KB
testcase_46 AC 67 ms
74,344 KB
testcase_47 AC 67 ms
74,988 KB
testcase_48 AC 86 ms
80,576 KB
testcase_49 AC 87 ms
80,816 KB
testcase_50 AC 70 ms
77,448 KB
testcase_51 AC 72 ms
76,224 KB
testcase_52 AC 66 ms
75,492 KB
testcase_53 AC 117 ms
80,852 KB
testcase_54 AC 1,225 ms
91,884 KB
testcase_55 AC 1,231 ms
91,852 KB
testcase_56 AC 1,203 ms
91,876 KB
testcase_57 AC 250 ms
81,764 KB
testcase_58 AC 242 ms
81,832 KB
testcase_59 AC 125 ms
80,844 KB
testcase_60 AC 345 ms
82,496 KB
testcase_61 AC 347 ms
82,716 KB
testcase_62 AC 1,620 ms
95,092 KB
testcase_63 AC 686 ms
85,332 KB
testcase_64 AC 452 ms
83,200 KB
testcase_65 AC 452 ms
83,120 KB
testcase_66 AC 58 ms
70,016 KB
testcase_67 AC 58 ms
70,816 KB
testcase_68 AC 1,370 ms
94,392 KB
testcase_69 AC 1,371 ms
94,580 KB
testcase_70 AC 1,221 ms
92,032 KB
testcase_71 AC 1,233 ms
91,928 KB
testcase_72 AC 625 ms
85,412 KB
testcase_73 AC 2,635 ms
105,756 KB
testcase_74 AC 2,636 ms
105,780 KB
testcase_75 AC 78 ms
78,140 KB
testcase_76 AC 1,326 ms
92,516 KB
testcase_77 AC 266 ms
81,916 KB
testcase_78 AC 1,985 ms
99,220 KB
testcase_79 AC 1,376 ms
94,732 KB
testcase_80 AC 1,782 ms
98,092 KB
testcase_81 AC 1,237 ms
91,884 KB
testcase_82 AC 63 ms
74,532 KB
testcase_83 AC 250 ms
81,764 KB
testcase_84 AC 283 ms
82,304 KB
testcase_85 AC 1,018 ms
89,636 KB
testcase_86 AC 1,837 ms
98,440 KB
testcase_87 TLE -
testcase_88 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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+1):
      q = p*d
      if q > N:
        break
      is_prime[q] = 0
  return is_prime,P

N = int(input())
is_prime,P = Eratosthenes(300000)
P = deque(P)
d = defaultdict(int)
Q = []
ans = 0
m = 0
while len(P):
  c = P.popleft()
  if c > N:
    break
  for p in P:
    if p - c > m:
      break
    ans += d[p-c]
  for p in Q:
    d[p+c] += 1
  if c >= 3:
    m = Q[-1] + c
  Q.append(c)
print(ans)
0