結果

問題 No.843 Triple Primes
ユーザー toyuzukotoyuzuko
提出日時 2020-04-21 21:18:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,844 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-12-20 11:26:49
合計ジャッジ時間 37,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 1,840 ms
16,384 KB
testcase_02 AC 38 ms
10,752 KB
testcase_03 AC 35 ms
10,624 KB
testcase_04 AC 40 ms
10,752 KB
testcase_05 AC 36 ms
10,624 KB
testcase_06 AC 42 ms
10,752 KB
testcase_07 AC 1,301 ms
15,232 KB
testcase_08 AC 1,425 ms
15,744 KB
testcase_09 AC 1,715 ms
16,256 KB
testcase_10 AC 1,360 ms
15,488 KB
testcase_11 AC 1,529 ms
16,000 KB
testcase_12 AC 1,598 ms
16,256 KB
testcase_13 AC 1,640 ms
16,000 KB
testcase_14 AC 1,582 ms
16,128 KB
testcase_15 AC 1,328 ms
15,104 KB
testcase_16 AC 1,380 ms
15,360 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 32 ms
10,624 KB
testcase_20 AC 311 ms
12,288 KB
testcase_21 AC 157 ms
11,520 KB
testcase_22 AC 806 ms
13,696 KB
testcase_23 AC 935 ms
14,080 KB
testcase_24 AC 344 ms
12,288 KB
testcase_25 AC 247 ms
11,904 KB
testcase_26 AC 1,844 ms
16,384 KB
testcase_27 AC 70 ms
11,008 KB
testcase_28 AC 1,702 ms
16,128 KB
testcase_29 AC 363 ms
12,544 KB
testcase_30 AC 1,648 ms
16,000 KB
testcase_31 AC 99 ms
11,392 KB
testcase_32 AC 63 ms
11,136 KB
testcase_33 AC 431 ms
12,672 KB
testcase_34 AC 706 ms
13,696 KB
testcase_35 AC 1,775 ms
16,256 KB
testcase_36 AC 205 ms
11,776 KB
testcase_37 AC 1,335 ms
15,104 KB
testcase_38 AC 949 ms
14,336 KB
testcase_39 AC 1,606 ms
16,128 KB
testcase_40 AC 31 ms
10,752 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 AC 1,419 ms
15,360 KB
testcase_43 AC 1,501 ms
15,872 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