結果

問題 No.843 Triple Primes
ユーザー mlihua09mlihua09
提出日時 2020-09-18 16:47:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 83,160 KB
最終ジャッジ日時 2024-06-22 08:02:35
合計ジャッジ時間 6,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,400 KB
testcase_01 AC 151 ms
82,120 KB
testcase_02 AC 76 ms
79,796 KB
testcase_03 AC 73 ms
79,876 KB
testcase_04 AC 73 ms
79,632 KB
testcase_05 AC 76 ms
79,656 KB
testcase_06 AC 72 ms
79,940 KB
testcase_07 AC 124 ms
82,736 KB
testcase_08 AC 125 ms
82,168 KB
testcase_09 AC 135 ms
81,908 KB
testcase_10 AC 123 ms
81,188 KB
testcase_11 AC 137 ms
82,288 KB
testcase_12 AC 137 ms
82,216 KB
testcase_13 AC 133 ms
81,328 KB
testcase_14 AC 133 ms
82,172 KB
testcase_15 AC 124 ms
81,792 KB
testcase_16 AC 121 ms
82,956 KB
testcase_17 AC 64 ms
75,004 KB
testcase_18 AC 66 ms
76,104 KB
testcase_19 AC 64 ms
74,936 KB
testcase_20 AC 85 ms
80,032 KB
testcase_21 AC 76 ms
79,380 KB
testcase_22 AC 104 ms
81,232 KB
testcase_23 AC 110 ms
82,700 KB
testcase_24 AC 85 ms
81,456 KB
testcase_25 AC 90 ms
79,664 KB
testcase_26 AC 145 ms
83,160 KB
testcase_27 AC 81 ms
80,536 KB
testcase_28 AC 136 ms
81,780 KB
testcase_29 AC 89 ms
80,172 KB
testcase_30 AC 135 ms
82,148 KB
testcase_31 AC 75 ms
79,924 KB
testcase_32 AC 74 ms
79,096 KB
testcase_33 AC 88 ms
80,536 KB
testcase_34 AC 98 ms
80,900 KB
testcase_35 AC 142 ms
82,056 KB
testcase_36 AC 79 ms
79,484 KB
testcase_37 AC 120 ms
81,912 KB
testcase_38 AC 113 ms
80,696 KB
testcase_39 AC 136 ms
82,316 KB
testcase_40 AC 68 ms
74,380 KB
testcase_41 AC 73 ms
75,036 KB
testcase_42 AC 136 ms
83,100 KB
testcase_43 AC 140 ms
82,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


isprime = [0, 0] + [1] * (10 ** 6 - 1)

for i in range(2, 10 ** 3 + 1):
    
    if isprime[i]:
        
        for j in range(2 * i, 10 ** 6 + 1, i):
            
            isprime[j] = 0
            
ans = 0

N = int(input())

P = [i for i in range(2, N + 1) if isprime[i]]

from bisect import bisect

for i in range(bisect(P, int((2 * N) ** 0.5))):
    
    for p in P:
        
        if P[i] ** 2 - N <= p < P[i] ** 2 and isprime[P[i] ** 2 - p]:
            
            ans += 1
            

print(ans)
    
0