結果

問題 No.843 Triple Primes
ユーザー AT274_AT274_
提出日時 2019-10-18 16:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-06-25 14:38:55
合計ジャッジ時間 6,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 246 ms
73,600 KB
testcase_02 AC 50 ms
59,392 KB
testcase_03 AC 49 ms
59,520 KB
testcase_04 AC 51 ms
60,672 KB
testcase_05 AC 50 ms
59,776 KB
testcase_06 AC 52 ms
60,544 KB
testcase_07 AC 158 ms
71,168 KB
testcase_08 AC 184 ms
72,064 KB
testcase_09 AC 239 ms
73,728 KB
testcase_10 AC 169 ms
71,296 KB
testcase_11 AC 202 ms
72,320 KB
testcase_12 AC 232 ms
73,472 KB
testcase_13 AC 215 ms
72,704 KB
testcase_14 AC 214 ms
72,704 KB
testcase_15 AC 161 ms
71,168 KB
testcase_16 AC 165 ms
71,040 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 70 ms
64,384 KB
testcase_21 AC 63 ms
62,848 KB
testcase_22 AC 102 ms
67,584 KB
testcase_23 AC 106 ms
68,864 KB
testcase_24 AC 71 ms
64,384 KB
testcase_25 AC 78 ms
63,104 KB
testcase_26 AC 239 ms
74,112 KB
testcase_27 AC 55 ms
61,056 KB
testcase_28 AC 219 ms
72,704 KB
testcase_29 AC 73 ms
64,640 KB
testcase_30 AC 228 ms
73,856 KB
testcase_31 AC 58 ms
61,440 KB
testcase_32 AC 55 ms
60,672 KB
testcase_33 AC 75 ms
65,024 KB
testcase_34 AC 95 ms
67,712 KB
testcase_35 AC 239 ms
73,856 KB
testcase_36 AC 70 ms
62,976 KB
testcase_37 AC 149 ms
71,168 KB
testcase_38 AC 117 ms
68,736 KB
testcase_39 AC 223 ms
73,600 KB
testcase_40 AC 41 ms
52,224 KB
testcase_41 AC 40 ms
51,968 KB
testcase_42 AC 176 ms
72,192 KB
testcase_43 AC 202 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


def eratosthenes(n):
    if n < 2:
        return []

    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