結果

問題 No.843 Triple Primes
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-24 00:48:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,488 KB
最終ジャッジ日時 2024-07-04 08:51:59
合計ジャッジ時間 26,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 1,186 ms
32,360 KB
testcase_02 AC 34 ms
11,008 KB
testcase_03 AC 33 ms
11,136 KB
testcase_04 AC 37 ms
11,136 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 38 ms
11,136 KB
testcase_07 AC 931 ms
27,204 KB
testcase_08 AC 999 ms
27,720 KB
testcase_09 AC 1,225 ms
32,476 KB
testcase_10 AC 954 ms
27,340 KB
testcase_11 AC 1,098 ms
27,976 KB
testcase_12 AC 1,075 ms
32,480 KB
testcase_13 AC 1,093 ms
32,368 KB
testcase_14 AC 1,178 ms
32,104 KB
testcase_15 AC 890 ms
27,464 KB
testcase_16 AC 906 ms
27,460 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 230 ms
16,276 KB
testcase_21 AC 120 ms
14,860 KB
testcase_22 AC 560 ms
21,828 KB
testcase_23 AC 573 ms
22,108 KB
testcase_24 AC 245 ms
16,396 KB
testcase_25 AC 178 ms
15,928 KB
testcase_26 AC 1,203 ms
32,488 KB
testcase_27 AC 57 ms
12,160 KB
testcase_28 AC 1,091 ms
32,364 KB
testcase_29 AC 268 ms
16,856 KB
testcase_30 AC 1,288 ms
32,404 KB
testcase_31 AC 78 ms
12,276 KB
testcase_32 AC 53 ms
11,904 KB
testcase_33 AC 312 ms
17,148 KB
testcase_34 AC 501 ms
21,732 KB
testcase_35 AC 1,136 ms
32,368 KB
testcase_36 AC 159 ms
14,860 KB
testcase_37 AC 818 ms
22,984 KB
testcase_38 AC 650 ms
23,528 KB
testcase_39 AC 1,153 ms
32,240 KB
testcase_40 WA -
testcase_41 AC 30 ms
10,752 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import chain


def prime_set(N):
    """
    Nまでの素数のsetを返す
    """
    if N < 4:
        return ({}, {}, {2}, {2, 3})[N]
    Nsq = int(N ** 0.5 + 0.5) + 1
    primes = {2, 3} | set(chain(range(5, N + 1, 6), range(7, N + 1, 6)))
    for i in range(5, Nsq, 2):
        if i in primes:
            primes -= set(range(i * i, N + 1, i * 2))
    return primes


N = int(input())
R = []
prime = prime_set(N)
for p in prime:
    if p * p < N:
        R.append(p*p)

ans = 0
for p in prime:
    for r in R:
        q = r - p
        if p <= q and q in prime:
            if p == q:
                ans += 1
            else:
                ans += 2
print(ans)
0