結果

問題 No.732 3PrimeCounting
ユーザー PNJPNJ
提出日時 2023-07-07 23:18:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 520 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 269,696 KB
最終ジャッジ日時 2024-07-21 19:43:31
合計ジャッジ時間 20,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
269,696 KB
testcase_01 AC 116 ms
120,448 KB
testcase_02 AC 123 ms
125,824 KB
testcase_03 AC 128 ms
126,080 KB
testcase_04 AC 122 ms
126,080 KB
testcase_05 AC 120 ms
125,824 KB
testcase_06 AC 130 ms
130,176 KB
testcase_07 AC 128 ms
130,048 KB
testcase_08 AC 130 ms
132,992 KB
testcase_09 AC 133 ms
132,736 KB
testcase_10 AC 132 ms
132,608 KB
testcase_11 AC 130 ms
132,864 KB
testcase_12 AC 135 ms
135,040 KB
testcase_13 AC 137 ms
134,784 KB
testcase_14 AC 136 ms
136,448 KB
testcase_15 AC 134 ms
136,448 KB
testcase_16 AC 134 ms
136,320 KB
testcase_17 AC 138 ms
136,192 KB
testcase_18 AC 137 ms
136,064 KB
testcase_19 AC 137 ms
136,424 KB
testcase_20 AC 209 ms
144,128 KB
testcase_21 AC 359 ms
146,176 KB
testcase_22 AC 364 ms
145,920 KB
testcase_23 AC 165 ms
143,104 KB
testcase_24 AC 166 ms
143,488 KB
testcase_25 AC 542 ms
149,248 KB
testcase_26 AC 426 ms
147,200 KB
testcase_27 AC 231 ms
144,512 KB
testcase_28 AC 231 ms
144,384 KB
testcase_29 AC 314 ms
146,176 KB
testcase_30 AC 314 ms
145,792 KB
testcase_31 AC 362 ms
146,176 KB
testcase_32 AC 460 ms
147,584 KB
testcase_33 AC 465 ms
147,584 KB
testcase_34 AC 458 ms
147,328 KB
testcase_35 AC 406 ms
146,688 KB
testcase_36 AC 388 ms
146,944 KB
testcase_37 AC 181 ms
143,872 KB
testcase_38 AC 178 ms
144,128 KB
testcase_39 AC 409 ms
146,816 KB
testcase_40 AC 374 ms
146,432 KB
testcase_41 AC 387 ms
146,176 KB
testcase_42 AC 378 ms
146,304 KB
testcase_43 AC 334 ms
145,792 KB
testcase_44 AC 331 ms
145,664 KB
testcase_45 AC 247 ms
144,640 KB
testcase_46 AC 262 ms
144,384 KB
testcase_47 AC 287 ms
144,896 KB
testcase_48 AC 558 ms
149,364 KB
testcase_49 AC 557 ms
149,248 KB
testcase_50 AC 368 ms
146,304 KB
testcase_51 AC 361 ms
145,920 KB
testcase_52 AC 251 ms
144,512 KB
testcase_53 AC 918 ms
149,248 KB
testcase_54 TLE -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def eratosthenes(N):
    P = []
    d = defaultdict(int)
    for p in range(2,N+1):
        if d[p] == 1:
            continue
        P.append(p)
        for q in range(1,N//p+1):
            d[p*q] = 1
    return P

d = defaultdict(int)
N = int(input())
P = eratosthenes(300000)
Q = [2]
S = []
ans = 0
for i in range(2,len(P)):
  c = P[i]
  if c > N:
    break
  for p in Q:
    q = p + P[i-1]
    d[q] += 1
  Q.append(P[i-1])
  for p in P:
    q = p - c
    ans += d[q]
print(ans)
0