結果

問題 No.843 Triple Primes
ユーザー AT274_AT274_
提出日時 2019-10-18 16:32:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,696 KB
最終ジャッジ日時 2024-06-25 14:35:23
合計ジャッジ時間 9,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,864 KB
testcase_01 AC 373 ms
93,588 KB
testcase_02 AC 47 ms
61,312 KB
testcase_03 AC 47 ms
61,156 KB
testcase_04 AC 48 ms
62,336 KB
testcase_05 AC 49 ms
61,440 KB
testcase_06 AC 51 ms
62,720 KB
testcase_07 AC 254 ms
89,216 KB
testcase_08 AC 296 ms
91,008 KB
testcase_09 AC 358 ms
93,696 KB
testcase_10 AC 266 ms
89,260 KB
testcase_11 AC 311 ms
91,428 KB
testcase_12 AC 344 ms
93,184 KB
testcase_13 AC 329 ms
91,452 KB
testcase_14 AC 336 ms
91,460 KB
testcase_15 AC 255 ms
89,216 KB
testcase_16 AC 262 ms
89,344 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 WA -
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 95 ms
79,104 KB
testcase_21 AC 75 ms
72,704 KB
testcase_22 AC 162 ms
84,368 KB
testcase_23 AC 176 ms
85,504 KB
testcase_24 AC 108 ms
79,104 KB
testcase_25 AC 101 ms
77,824 KB
testcase_26 AC 373 ms
93,668 KB
testcase_27 AC 60 ms
65,280 KB
testcase_28 AC 339 ms
91,480 KB
testcase_29 AC 109 ms
79,872 KB
testcase_30 AC 356 ms
93,440 KB
testcase_31 AC 60 ms
67,712 KB
testcase_32 AC 57 ms
65,280 KB
testcase_33 AC 110 ms
80,000 KB
testcase_34 AC 152 ms
83,840 KB
testcase_35 AC 368 ms
93,312 KB
testcase_36 AC 92 ms
77,440 KB
testcase_37 AC 262 ms
89,344 KB
testcase_38 AC 193 ms
86,016 KB
testcase_39 AC 352 ms
93,312 KB
testcase_40 WA -
testcase_41 AC 40 ms
51,944 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


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

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


primes = eratosthenes(N)
prime_set = set(primes)
r_candidates = [int(n ** 0.5) for n in range(2, N + 1) if (n ** 0.5) in prime_set]

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

print(ans)
0