結果

問題 No.843 Triple Primes
ユーザー toyuzukotoyuzuko
提出日時 2020-04-21 21:18:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,789 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-17 02:25:58
合計ジャッジ時間 37,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 1,789 ms
16,384 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 1,313 ms
15,360 KB
testcase_08 AC 1,521 ms
15,744 KB
testcase_09 AC 1,725 ms
16,384 KB
testcase_10 AC 1,256 ms
15,488 KB
testcase_11 AC 1,527 ms
16,000 KB
testcase_12 AC 1,595 ms
16,256 KB
testcase_13 AC 1,615 ms
16,128 KB
testcase_14 AC 1,514 ms
16,128 KB
testcase_15 AC 1,271 ms
15,360 KB
testcase_16 AC 1,288 ms
15,488 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 302 ms
12,288 KB
testcase_21 AC 150 ms
11,648 KB
testcase_22 AC 726 ms
13,952 KB
testcase_23 AC 789 ms
14,080 KB
testcase_24 AC 325 ms
12,416 KB
testcase_25 AC 241 ms
12,032 KB
testcase_26 AC 1,680 ms
16,384 KB
testcase_27 AC 67 ms
11,136 KB
testcase_28 AC 1,530 ms
16,128 KB
testcase_29 AC 334 ms
12,544 KB
testcase_30 AC 1,597 ms
16,256 KB
testcase_31 AC 97 ms
11,520 KB
testcase_32 AC 64 ms
11,136 KB
testcase_33 AC 394 ms
12,800 KB
testcase_34 AC 683 ms
13,824 KB
testcase_35 AC 1,683 ms
16,384 KB
testcase_36 AC 208 ms
11,904 KB
testcase_37 AC 1,167 ms
15,232 KB
testcase_38 AC 965 ms
14,464 KB
testcase_39 AC 1,604 ms
16,256 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 31 ms
10,752 KB
testcase_42 AC 1,413 ms
15,616 KB
testcase_43 AC 1,534 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    res = [True for _ in range(n + 1)]
    res[0] = False
    res[1] = False
    i = 2
    while i * i <= n:
        if res[i]:
            for j in range(i * 2, n + 1, i):
                res[j] = False
        i += 1
    return res

N = int(input())

S = sieve(N)

P = [i for i in range(N + 1) if S[i]]
R = []

for i in range(N + 1):
    if i**2 > 2 * N:
        break
    if S[i]:
        R.append(i**2)

res = 0

for p in P:
    for r in R:
        q = r - p
        if 0 < q <= N and S[q]:
            res += 1

print(res)
0