結果

問題 No.732 3PrimeCounting
ユーザー PNJPNJ
提出日時 2023-11-21 05:19:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 649 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 113,740 KB
最終ジャッジ日時 2024-09-26 07:00:03
合計ジャッジ時間 43,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
70,380 KB
testcase_01 AC 54 ms
70,616 KB
testcase_02 AC 55 ms
70,152 KB
testcase_03 AC 56 ms
70,232 KB
testcase_04 AC 56 ms
70,324 KB
testcase_05 AC 56 ms
71,096 KB
testcase_06 AC 61 ms
70,324 KB
testcase_07 AC 56 ms
69,380 KB
testcase_08 AC 56 ms
71,216 KB
testcase_09 AC 61 ms
70,312 KB
testcase_10 AC 61 ms
69,796 KB
testcase_11 AC 57 ms
71,516 KB
testcase_12 AC 57 ms
71,284 KB
testcase_13 AC 56 ms
70,268 KB
testcase_14 AC 56 ms
69,728 KB
testcase_15 AC 54 ms
70,024 KB
testcase_16 AC 56 ms
70,708 KB
testcase_17 AC 56 ms
70,224 KB
testcase_18 AC 54 ms
69,716 KB
testcase_19 AC 54 ms
69,784 KB
testcase_20 AC 64 ms
73,184 KB
testcase_21 AC 71 ms
76,636 KB
testcase_22 AC 69 ms
75,852 KB
testcase_23 AC 58 ms
71,116 KB
testcase_24 AC 57 ms
71,528 KB
testcase_25 AC 84 ms
80,684 KB
testcase_26 AC 76 ms
77,352 KB
testcase_27 AC 65 ms
74,760 KB
testcase_28 AC 64 ms
73,680 KB
testcase_29 AC 67 ms
75,520 KB
testcase_30 AC 65 ms
75,668 KB
testcase_31 AC 69 ms
76,140 KB
testcase_32 AC 75 ms
77,304 KB
testcase_33 AC 79 ms
77,432 KB
testcase_34 AC 79 ms
77,220 KB
testcase_35 AC 73 ms
78,500 KB
testcase_36 AC 75 ms
78,104 KB
testcase_37 AC 63 ms
73,924 KB
testcase_38 AC 63 ms
72,560 KB
testcase_39 AC 76 ms
78,036 KB
testcase_40 AC 74 ms
77,356 KB
testcase_41 AC 71 ms
76,948 KB
testcase_42 AC 72 ms
77,084 KB
testcase_43 AC 70 ms
76,332 KB
testcase_44 AC 69 ms
75,612 KB
testcase_45 AC 65 ms
74,404 KB
testcase_46 AC 65 ms
74,880 KB
testcase_47 AC 69 ms
74,456 KB
testcase_48 AC 88 ms
80,540 KB
testcase_49 AC 87 ms
80,564 KB
testcase_50 AC 71 ms
77,464 KB
testcase_51 AC 71 ms
76,304 KB
testcase_52 AC 64 ms
74,956 KB
testcase_53 AC 121 ms
80,676 KB
testcase_54 AC 1,205 ms
89,572 KB
testcase_55 AC 1,203 ms
89,544 KB
testcase_56 AC 1,196 ms
89,532 KB
testcase_57 AC 243 ms
80,404 KB
testcase_58 AC 241 ms
80,392 KB
testcase_59 AC 124 ms
80,352 KB
testcase_60 AC 352 ms
80,524 KB
testcase_61 AC 355 ms
80,564 KB
testcase_62 AC 1,570 ms
92,736 KB
testcase_63 AC 657 ms
83,012 KB
testcase_64 AC 440 ms
80,760 KB
testcase_65 AC 446 ms
80,708 KB
testcase_66 AC 57 ms
71,008 KB
testcase_67 AC 55 ms
71,684 KB
testcase_68 AC 1,365 ms
92,108 KB
testcase_69 AC 1,342 ms
92,084 KB
testcase_70 AC 1,277 ms
89,540 KB
testcase_71 AC 1,223 ms
89,424 KB
testcase_72 AC 625 ms
83,120 KB
testcase_73 AC 2,620 ms
103,368 KB
testcase_74 AC 2,603 ms
103,860 KB
testcase_75 AC 76 ms
77,920 KB
testcase_76 AC 1,360 ms
90,176 KB
testcase_77 AC 263 ms
80,536 KB
testcase_78 AC 2,067 ms
96,564 KB
testcase_79 AC 1,384 ms
92,480 KB
testcase_80 AC 1,805 ms
95,536 KB
testcase_81 AC 1,229 ms
89,664 KB
testcase_82 AC 62 ms
73,288 KB
testcase_83 AC 252 ms
80,540 KB
testcase_84 AC 276 ms
80,424 KB
testcase_85 AC 1,049 ms
87,364 KB
testcase_86 AC 1,832 ms
95,916 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 P

N = int(input())
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