結果

問題 No.843 Triple Primes
ユーザー 👑 rin204rin204
提出日時 2020-10-02 02:58:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 68,480 KB
最終ジャッジ日時 2024-07-07 15:02:38
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 64 ms
68,224 KB
testcase_02 AC 43 ms
59,904 KB
testcase_03 AC 43 ms
59,520 KB
testcase_04 AC 45 ms
61,056 KB
testcase_05 AC 46 ms
59,776 KB
testcase_06 AC 46 ms
61,056 KB
testcase_07 AC 57 ms
66,688 KB
testcase_08 AC 59 ms
67,712 KB
testcase_09 AC 65 ms
68,352 KB
testcase_10 AC 59 ms
67,328 KB
testcase_11 AC 62 ms
67,456 KB
testcase_12 AC 64 ms
68,096 KB
testcase_13 AC 64 ms
67,840 KB
testcase_14 AC 61 ms
67,712 KB
testcase_15 AC 59 ms
66,944 KB
testcase_16 AC 59 ms
67,200 KB
testcase_17 AC 34 ms
51,712 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 35 ms
52,224 KB
testcase_20 AC 53 ms
63,360 KB
testcase_21 AC 48 ms
62,208 KB
testcase_22 AC 55 ms
65,024 KB
testcase_23 AC 58 ms
65,536 KB
testcase_24 AC 52 ms
62,976 KB
testcase_25 AC 52 ms
62,848 KB
testcase_26 AC 65 ms
68,352 KB
testcase_27 AC 45 ms
61,696 KB
testcase_28 AC 61 ms
67,712 KB
testcase_29 AC 50 ms
63,488 KB
testcase_30 AC 63 ms
68,480 KB
testcase_31 AC 46 ms
61,824 KB
testcase_32 AC 45 ms
61,440 KB
testcase_33 AC 50 ms
63,744 KB
testcase_34 AC 53 ms
64,768 KB
testcase_35 AC 65 ms
68,096 KB
testcase_36 AC 49 ms
62,464 KB
testcase_37 AC 61 ms
66,816 KB
testcase_38 AC 59 ms
65,536 KB
testcase_39 AC 64 ms
67,712 KB
testcase_40 AC 36 ms
51,968 KB
testcase_41 AC 36 ms
52,096 KB
testcase_42 AC 60 ms
67,200 KB
testcase_43 AC 61 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
prime = [True for _ in range(n + 1)]
prime[0] = prime[1] = False
for i in range(2, int(n ** 0.5) + 1):
    if not prime[i]:
        continue
    for j in range(i * i, n + 1, i):
        prime[j] = False
prime_lst = []
for i in range(n + 1):
    if prime[i]:
        prime_lst.append(i)

ans = 0
p = 2
for q in prime_lst:
    rr = p + q
    r = int(rr ** 0.5)
    if r ** 2 != rr:
        continue
    elif prime[r]:
        ans += 2
        if p == q == 2:
            ans -= 1
            
print(ans)
0