結果

問題 No.843 Triple Primes
ユーザー AT274_AT274_
提出日時 2019-10-18 16:44:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 503 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-06-25 14:38:36
合計ジャッジ時間 7,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 248 ms
73,856 KB
testcase_02 AC 47 ms
59,264 KB
testcase_03 AC 48 ms
59,776 KB
testcase_04 AC 49 ms
60,416 KB
testcase_05 AC 48 ms
59,264 KB
testcase_06 AC 50 ms
60,160 KB
testcase_07 AC 155 ms
70,912 KB
testcase_08 AC 182 ms
72,320 KB
testcase_09 AC 238 ms
73,856 KB
testcase_10 AC 168 ms
71,040 KB
testcase_11 AC 201 ms
72,576 KB
testcase_12 AC 227 ms
73,728 KB
testcase_13 AC 213 ms
72,704 KB
testcase_14 AC 214 ms
72,704 KB
testcase_15 AC 162 ms
70,912 KB
testcase_16 AC 166 ms
71,296 KB
testcase_17 RE -
testcase_18 AC 42 ms
51,968 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 68 ms
64,384 KB
testcase_21 AC 61 ms
62,464 KB
testcase_22 AC 100 ms
68,096 KB
testcase_23 AC 104 ms
68,352 KB
testcase_24 AC 70 ms
64,384 KB
testcase_25 AC 76 ms
63,104 KB
testcase_26 AC 235 ms
74,112 KB
testcase_27 AC 53 ms
61,056 KB
testcase_28 AC 220 ms
72,448 KB
testcase_29 AC 73 ms
65,024 KB
testcase_30 AC 230 ms
73,728 KB
testcase_31 AC 55 ms
61,568 KB
testcase_32 AC 54 ms
60,672 KB
testcase_33 AC 74 ms
65,152 KB
testcase_34 AC 94 ms
67,584 KB
testcase_35 AC 244 ms
73,600 KB
testcase_36 AC 70 ms
62,720 KB
testcase_37 AC 148 ms
71,296 KB
testcase_38 AC 118 ms
68,992 KB
testcase_39 AC 221 ms
73,600 KB
testcase_40 AC 40 ms
52,608 KB
testcase_41 RE -
testcase_42 AC 179 ms
71,936 KB
testcase_43 AC 200 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


def eratosthenes(n):
    is_primes = [True] * (n + 1)
    for x in range(2, int(n ** 0.5 + 1) + 1):
        if is_primes[x]:
            for mx in range(2 * x, n + 1, x):
                is_primes[mx] = False

    return [i for i in range(2, n + 1) if is_primes[i]]


primes = eratosthenes(N)
prime_set = set(primes)

ans = 0
for r in primes:
    if r ** 2 > 2 * N:
        break
    for p in primes:
        q = r ** 2 - p
        if q in prime_set:
            ans += 1

print(ans)
0