結果

問題 No.843 Triple Primes
ユーザー AT274_AT274_
提出日時 2019-10-18 16:32:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,456 KB
最終ジャッジ日時 2024-06-25 14:36:50
合計ジャッジ時間 34,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 1,661 ms
16,384 KB
testcase_02 AC 36 ms
10,880 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 40 ms
11,008 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 41 ms
11,136 KB
testcase_07 AC 1,141 ms
15,360 KB
testcase_08 AC 1,325 ms
15,744 KB
testcase_09 AC 1,629 ms
16,456 KB
testcase_10 AC 1,274 ms
15,488 KB
testcase_11 AC 1,414 ms
16,128 KB
testcase_12 AC 1,593 ms
16,256 KB
testcase_13 AC 1,527 ms
16,256 KB
testcase_14 AC 1,414 ms
16,128 KB
testcase_15 AC 1,225 ms
15,360 KB
testcase_16 AC 1,265 ms
15,540 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 WA -
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 303 ms
12,288 KB
testcase_21 AC 160 ms
11,832 KB
testcase_22 AC 776 ms
14,420 KB
testcase_23 AC 752 ms
14,448 KB
testcase_24 AC 340 ms
12,288 KB
testcase_25 AC 237 ms
11,904 KB
testcase_26 AC 1,541 ms
16,384 KB
testcase_27 AC 68 ms
11,264 KB
testcase_28 AC 1,506 ms
16,256 KB
testcase_29 AC 359 ms
12,416 KB
testcase_30 AC 1,530 ms
16,384 KB
testcase_31 AC 101 ms
11,264 KB
testcase_32 AC 62 ms
11,136 KB
testcase_33 AC 391 ms
12,672 KB
testcase_34 AC 714 ms
14,344 KB
testcase_35 AC 1,588 ms
16,384 KB
testcase_36 AC 204 ms
11,776 KB
testcase_37 AC 1,112 ms
15,104 KB
testcase_38 AC 848 ms
14,696 KB
testcase_39 AC 1,474 ms
16,128 KB
testcase_40 WA -
testcase_41 AC 28 ms
10,880 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