結果

問題 No.843 Triple Primes
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 22:01:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-09-19 14:20:10
合計ジャッジ時間 4,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 95 ms
85,504 KB
testcase_02 AC 44 ms
59,392 KB
testcase_03 AC 44 ms
59,392 KB
testcase_04 AC 49 ms
61,952 KB
testcase_05 AC 47 ms
59,264 KB
testcase_06 AC 47 ms
61,952 KB
testcase_07 AC 88 ms
83,968 KB
testcase_08 AC 100 ms
84,480 KB
testcase_09 AC 98 ms
85,376 KB
testcase_10 AC 90 ms
83,968 KB
testcase_11 AC 91 ms
84,224 KB
testcase_12 AC 93 ms
84,992 KB
testcase_13 AC 91 ms
84,864 KB
testcase_14 AC 99 ms
84,736 KB
testcase_15 AC 94 ms
84,096 KB
testcase_16 AC 95 ms
84,224 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 60 ms
72,576 KB
testcase_21 AC 55 ms
67,200 KB
testcase_22 AC 87 ms
82,944 KB
testcase_23 AC 86 ms
83,072 KB
testcase_24 AC 68 ms
72,832 KB
testcase_25 AC 64 ms
70,144 KB
testcase_26 AC 96 ms
84,992 KB
testcase_27 AC 54 ms
63,488 KB
testcase_28 AC 97 ms
84,992 KB
testcase_29 AC 63 ms
73,472 KB
testcase_30 AC 94 ms
84,864 KB
testcase_31 AC 53 ms
64,768 KB
testcase_32 AC 52 ms
63,360 KB
testcase_33 AC 68 ms
74,880 KB
testcase_34 AC 83 ms
83,072 KB
testcase_35 AC 93 ms
84,992 KB
testcase_36 AC 57 ms
68,736 KB
testcase_37 AC 91 ms
84,096 KB
testcase_38 AC 90 ms
83,200 KB
testcase_39 AC 102 ms
84,992 KB
testcase_40 AC 38 ms
51,584 KB
testcase_41 AC 37 ms
52,224 KB
testcase_42 AC 90 ms
84,352 KB
testcase_43 AC 95 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
sieve = list(range(n + 1))
sieve[0] = sieve[1] = None
for x in range(2, math.ceil(math.sqrt(n)) + 1):
    if sieve[x] is not None:
        for y in range(x + x, n + 1, x):
            sieve[y] = None

count = 0
primes = set(x for x in sieve if x is not None)
for q in primes:
    x = q + 2
    r = math.ceil(math.sqrt(x))
    if r * r == x and r in primes:
        if q == 2:
            count += 1
        else:
            count += 2

print(count)
0