結果

問題 No.843 Triple Primes
ユーザー titiatitia
提出日時 2019-06-28 21:34:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-07-02 04:26:20
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 118 ms
73,728 KB
testcase_02 AC 50 ms
59,904 KB
testcase_03 AC 51 ms
59,904 KB
testcase_04 AC 51 ms
60,160 KB
testcase_05 AC 50 ms
60,288 KB
testcase_06 AC 50 ms
59,904 KB
testcase_07 AC 93 ms
70,912 KB
testcase_08 AC 98 ms
72,320 KB
testcase_09 AC 112 ms
73,728 KB
testcase_10 AC 92 ms
71,040 KB
testcase_11 AC 102 ms
72,576 KB
testcase_12 AC 108 ms
73,600 KB
testcase_13 AC 105 ms
72,320 KB
testcase_14 AC 106 ms
72,448 KB
testcase_15 AC 89 ms
70,912 KB
testcase_16 AC 91 ms
70,912 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 WA -
testcase_19 AC 41 ms
52,096 KB
testcase_20 AC 59 ms
64,000 KB
testcase_21 AC 55 ms
61,952 KB
testcase_22 AC 72 ms
67,584 KB
testcase_23 AC 73 ms
68,352 KB
testcase_24 AC 59 ms
64,128 KB
testcase_25 AC 60 ms
63,104 KB
testcase_26 AC 112 ms
73,600 KB
testcase_27 AC 51 ms
61,056 KB
testcase_28 AC 106 ms
72,448 KB
testcase_29 AC 61 ms
64,768 KB
testcase_30 AC 112 ms
73,472 KB
testcase_31 AC 54 ms
61,568 KB
testcase_32 AC 52 ms
60,800 KB
testcase_33 AC 62 ms
64,512 KB
testcase_34 AC 70 ms
67,456 KB
testcase_35 AC 113 ms
73,600 KB
testcase_36 AC 57 ms
62,848 KB
testcase_37 AC 86 ms
70,528 KB
testcase_38 AC 75 ms
68,736 KB
testcase_39 AC 109 ms
73,088 KB
testcase_40 WA -
testcase_41 AC 41 ms
51,712 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

x=int(input())

#x=5*10**5

import math 
L=math.floor(math.sqrt(x))#平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0#1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]
SP=set(Primes)

ANS=0
for b in Primes:
    if b>math.sqrt(x):
        break

    for y in Primes:
        if y>=b**2:
            break
        if b**2-y in SP:
            ANS+=1

print(ANS)
0