結果

問題 No.843 Triple Primes
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-21 15:33:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-09-20 11:51:15
合計ジャッジ時間 4,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 143 ms
83,072 KB
testcase_02 AC 50 ms
61,440 KB
testcase_03 AC 50 ms
61,184 KB
testcase_04 AC 49 ms
61,568 KB
testcase_05 AC 48 ms
61,312 KB
testcase_06 AC 50 ms
61,696 KB
testcase_07 AC 107 ms
78,976 KB
testcase_08 AC 107 ms
80,640 KB
testcase_09 AC 125 ms
82,944 KB
testcase_10 AC 98 ms
78,976 KB
testcase_11 AC 114 ms
81,024 KB
testcase_12 AC 124 ms
83,072 KB
testcase_13 AC 117 ms
81,024 KB
testcase_14 AC 118 ms
81,152 KB
testcase_15 AC 98 ms
78,592 KB
testcase_16 AC 102 ms
78,848 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 AC 61 ms
68,224 KB
testcase_21 AC 58 ms
65,280 KB
testcase_22 AC 77 ms
73,344 KB
testcase_23 AC 76 ms
74,752 KB
testcase_24 AC 61 ms
68,096 KB
testcase_25 AC 63 ms
66,432 KB
testcase_26 AC 128 ms
83,328 KB
testcase_27 AC 51 ms
62,848 KB
testcase_28 AC 117 ms
81,280 KB
testcase_29 AC 63 ms
68,864 KB
testcase_30 AC 124 ms
82,688 KB
testcase_31 AC 54 ms
63,744 KB
testcase_32 AC 50 ms
62,592 KB
testcase_33 AC 65 ms
69,504 KB
testcase_34 AC 74 ms
73,088 KB
testcase_35 AC 124 ms
82,944 KB
testcase_36 AC 58 ms
65,920 KB
testcase_37 AC 93 ms
78,464 KB
testcase_38 AC 84 ms
75,264 KB
testcase_39 AC 120 ms
82,560 KB
testcase_40 AC 37 ms
51,968 KB
testcase_41 AC 36 ms
51,840 KB
testcase_42 AC 106 ms
80,640 KB
testcase_43 AC 113 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
primes = []
ans = 0
r = set()
pq = set()
count = [0]*(n+1)
for i in range(2,n+1):
    if count[i]:
        continue
    primes.append(i)
    for j in range(i,n+1,i):
        count[j] += 1

    r.add(i**2)
    pq.add(i)

    # for j in r:
    #     if j-i in pq:
    #         if i == j-i:
    #             ans += 1
    #         else:
    #             ans += 2

for i in r:
    if i > 2*n:
        continue
    for p in primes:
        if p > i:
            break
        if i-p < p:
            break
        if i-p in pq:
            if p == i-p:
                ans += 1
            else:
                ans += 2
print(ans)
0