結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
68,528 KB
testcase_01 AC 72 ms
68,700 KB
testcase_02 AC 70 ms
69,168 KB
testcase_03 AC 70 ms
69,008 KB
testcase_04 AC 71 ms
69,004 KB
testcase_05 AC 74 ms
69,440 KB
testcase_06 AC 71 ms
70,228 KB
testcase_07 AC 71 ms
68,928 KB
testcase_08 AC 73 ms
68,384 KB
testcase_09 AC 74 ms
69,328 KB
testcase_10 AC 73 ms
69,844 KB
testcase_11 AC 71 ms
68,992 KB
testcase_12 AC 71 ms
69,504 KB
testcase_13 AC 71 ms
68,664 KB
testcase_14 AC 71 ms
69,220 KB
testcase_15 AC 73 ms
68,788 KB
testcase_16 AC 74 ms
69,000 KB
testcase_17 AC 71 ms
69,584 KB
testcase_18 AC 70 ms
68,128 KB
testcase_19 AC 67 ms
68,580 KB
testcase_20 AC 78 ms
72,220 KB
testcase_21 AC 80 ms
75,120 KB
testcase_22 AC 80 ms
75,160 KB
testcase_23 AC 67 ms
70,932 KB
testcase_24 AC 67 ms
70,936 KB
testcase_25 AC 86 ms
77,156 KB
testcase_26 AC 82 ms
76,248 KB
testcase_27 AC 73 ms
72,380 KB
testcase_28 AC 70 ms
72,832 KB
testcase_29 AC 87 ms
75,568 KB
testcase_30 AC 83 ms
74,552 KB
testcase_31 AC 88 ms
76,076 KB
testcase_32 AC 91 ms
76,492 KB
testcase_33 AC 92 ms
77,108 KB
testcase_34 AC 91 ms
76,340 KB
testcase_35 AC 87 ms
75,484 KB
testcase_36 AC 85 ms
75,704 KB
testcase_37 AC 75 ms
72,612 KB
testcase_38 AC 77 ms
72,760 KB
testcase_39 AC 86 ms
75,240 KB
testcase_40 AC 86 ms
76,352 KB
testcase_41 AC 88 ms
74,788 KB
testcase_42 AC 86 ms
74,908 KB
testcase_43 AC 85 ms
75,180 KB
testcase_44 AC 85 ms
75,392 KB
testcase_45 AC 80 ms
73,936 KB
testcase_46 AC 84 ms
72,860 KB
testcase_47 AC 82 ms
73,944 KB
testcase_48 AC 96 ms
77,296 KB
testcase_49 AC 95 ms
77,520 KB
testcase_50 AC 100 ms
75,224 KB
testcase_51 AC 89 ms
74,624 KB
testcase_52 AC 81 ms
72,496 KB
testcase_53 AC 133 ms
80,032 KB
testcase_54 AC 1,222 ms
89,736 KB
testcase_55 AC 1,219 ms
89,376 KB
testcase_56 AC 1,220 ms
89,128 KB
testcase_57 AC 253 ms
79,908 KB
testcase_58 AC 250 ms
80,092 KB
testcase_59 AC 135 ms
80,016 KB
testcase_60 AC 375 ms
79,816 KB
testcase_61 AC 366 ms
80,088 KB
testcase_62 AC 1,625 ms
92,328 KB
testcase_63 AC 697 ms
82,728 KB
testcase_64 AC 468 ms
80,280 KB
testcase_65 AC 466 ms
80,300 KB
testcase_66 AC 70 ms
69,648 KB
testcase_67 AC 72 ms
69,980 KB
testcase_68 AC 1,418 ms
90,788 KB
testcase_69 AC 1,402 ms
90,920 KB
testcase_70 AC 1,266 ms
89,368 KB
testcase_71 AC 1,263 ms
89,244 KB
testcase_72 AC 645 ms
82,720 KB
testcase_73 AC 2,618 ms
103,204 KB
testcase_74 AC 2,639 ms
103,052 KB
testcase_75 AC 87 ms
76,744 KB
testcase_76 AC 1,371 ms
89,872 KB
testcase_77 AC 280 ms
80,144 KB
testcase_78 AC 2,023 ms
96,276 KB
testcase_79 AC 1,388 ms
91,932 KB
testcase_80 AC 1,788 ms
95,256 KB
testcase_81 AC 1,233 ms
89,240 KB
testcase_82 AC 72 ms
71,836 KB
testcase_83 AC 257 ms
80,124 KB
testcase_84 AC 285 ms
79,964 KB
testcase_85 AC 1,036 ms
86,804 KB
testcase_86 AC 1,827 ms
95,020 KB
testcase_87 TLE -
testcase_88 TLE -
権限があれば一括ダウンロードができます

ソースコード

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]
d = defaultdict(int)
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 += d[p-c]
  for p in Q:
    d[p+c] += 1
  if c >= 3:
    m = Q[-1] + c
  Q.append(c)
print(ans)
0