結果

問題 No.843 Triple Primes
ユーザー flippergoflippergo
提出日時 2024-10-14 21:24:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-10-14 21:24:48
合計ジャッジ時間 5,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 120 ms
70,016 KB
testcase_02 AC 52 ms
61,568 KB
testcase_03 AC 53 ms
61,696 KB
testcase_04 AC 54 ms
61,952 KB
testcase_05 AC 52 ms
61,568 KB
testcase_06 AC 53 ms
61,952 KB
testcase_07 AC 103 ms
68,480 KB
testcase_08 AC 119 ms
68,992 KB
testcase_09 AC 122 ms
70,144 KB
testcase_10 AC 104 ms
68,736 KB
testcase_11 AC 112 ms
69,248 KB
testcase_12 AC 117 ms
69,888 KB
testcase_13 AC 122 ms
70,016 KB
testcase_14 AC 118 ms
69,376 KB
testcase_15 AC 102 ms
68,608 KB
testcase_16 AC 105 ms
68,608 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 40 ms
51,584 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 65 ms
65,152 KB
testcase_21 AC 58 ms
63,872 KB
testcase_22 AC 84 ms
67,072 KB
testcase_23 AC 84 ms
67,072 KB
testcase_24 AC 66 ms
65,024 KB
testcase_25 AC 68 ms
65,024 KB
testcase_26 AC 120 ms
70,016 KB
testcase_27 AC 53 ms
62,848 KB
testcase_28 AC 116 ms
69,376 KB
testcase_29 AC 68 ms
65,664 KB
testcase_30 AC 119 ms
70,144 KB
testcase_31 AC 58 ms
63,744 KB
testcase_32 AC 53 ms
62,464 KB
testcase_33 AC 76 ms
65,152 KB
testcase_34 AC 81 ms
66,816 KB
testcase_35 AC 123 ms
70,016 KB
testcase_36 AC 61 ms
64,128 KB
testcase_37 AC 101 ms
68,352 KB
testcase_38 AC 92 ms
67,328 KB
testcase_39 AC 117 ms
69,504 KB
testcase_40 AC 37 ms
51,840 KB
testcase_41 AC 36 ms
51,968 KB
testcase_42 AC 110 ms
68,992 KB
testcase_43 AC 119 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(range(N+1))
P[0] = -1
P[1] = -1
for i in range(2,N+1):
    if i*i>N:break
    for j in range(i*i,N+1,i):
        P[j] = P[i]
Q = []
for i in range(2,N+1):
    if P[i]==i:
        Q.append(i)
S = []
for r in Q:
    if r**2>2*N:break
    S.append(r**2)
ans = 0
for z in S:
    for p in Q:
        if N>=z-p>0 and P[z-p]==z-p:
            ans += 1
print(ans)
0