結果

問題 No.843 Triple Primes
ユーザー kekurekekure
提出日時 2019-07-06 10:53:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 79,296 KB
最終ジャッジ日時 2024-09-25 01:40:26
合計ジャッジ時間 5,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,800 KB
testcase_01 AC 146 ms
74,712 KB
testcase_02 AC 49 ms
62,824 KB
testcase_03 AC 48 ms
62,760 KB
testcase_04 AC 50 ms
63,220 KB
testcase_05 AC 48 ms
61,292 KB
testcase_06 AC 52 ms
64,152 KB
testcase_07 AC 122 ms
73,536 KB
testcase_08 AC 130 ms
73,460 KB
testcase_09 AC 146 ms
74,860 KB
testcase_10 AC 126 ms
72,864 KB
testcase_11 AC 136 ms
74,616 KB
testcase_12 AC 142 ms
74,348 KB
testcase_13 AC 139 ms
74,276 KB
testcase_14 AC 139 ms
74,052 KB
testcase_15 AC 125 ms
72,164 KB
testcase_16 AC 128 ms
72,836 KB
testcase_17 WA -
testcase_18 AC 38 ms
52,680 KB
testcase_19 AC 39 ms
52,892 KB
testcase_20 AC 72 ms
68,196 KB
testcase_21 AC 61 ms
65,748 KB
testcase_22 AC 96 ms
70,448 KB
testcase_23 AC 99 ms
71,716 KB
testcase_24 AC 72 ms
67,484 KB
testcase_25 AC 66 ms
66,792 KB
testcase_26 AC 145 ms
75,876 KB
testcase_27 AC 57 ms
65,896 KB
testcase_28 RE -
testcase_29 AC 74 ms
66,924 KB
testcase_30 AC 143 ms
74,548 KB
testcase_31 AC 58 ms
65,272 KB
testcase_32 AC 56 ms
65,136 KB
testcase_33 AC 77 ms
67,276 KB
testcase_34 AC 92 ms
69,024 KB
testcase_35 AC 144 ms
75,188 KB
testcase_36 AC 66 ms
66,872 KB
testcase_37 AC 119 ms
72,252 KB
testcase_38 AC 107 ms
71,260 KB
testcase_39 AC 141 ms
73,788 KB
testcase_40 AC 38 ms
52,136 KB
testcase_41 WA -
testcase_42 AC 129 ms
72,776 KB
testcase_43 AC 135 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def makeprime(k) :
    prime = [2,3,5,7,11]

    for i in range(13, k + 1, 2) :
        if (i % 3 == 0 or i % 5 == 0 or i % 7 == 0 or i % 11 == 0) :
            continue
        limit = int(math.sqrt(i)) + 1
        isprime = False
        for x in prime :
            if (x > limit) :
                isprime = True
                break
            if (i % x == 0) :
                break
        if (isprime) :
            prime.append(i)
    
    return prime

k = int(input())
prime = makeprime(k)

i_r = 1
i_q = 3
cnt = 0

last_prime = prime[-1]

limit_r = math.sqrt(2 + k)

while (prime[i_r] <= limit_r) :
    R = prime[i_r] ** 2
    while (True) :
        Q = 2 + prime[i_q]
        if (R == Q) :
            cnt += 1
            break
        elif (Q > R or prime[i_q] == k) :
            break
        i_q += 1
    i_r += 1

print(cnt * 2 + 1)
            



    
0