結果

問題 No.843 Triple Primes
ユーザー pluto77pluto77
提出日時 2019-07-01 11:23:00
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-09-19 14:16:06
合計ジャッジ時間 9,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
75,648 KB
testcase_01 AC 225 ms
83,584 KB
testcase_02 AC 100 ms
77,184 KB
testcase_03 AC 98 ms
77,440 KB
testcase_04 AC 101 ms
77,952 KB
testcase_05 AC 97 ms
77,184 KB
testcase_06 AC 101 ms
77,952 KB
testcase_07 AC 188 ms
83,072 KB
testcase_08 AC 198 ms
83,712 KB
testcase_09 AC 214 ms
83,200 KB
testcase_10 AC 192 ms
83,328 KB
testcase_11 AC 207 ms
84,224 KB
testcase_12 AC 211 ms
82,688 KB
testcase_13 AC 207 ms
83,712 KB
testcase_14 AC 209 ms
83,840 KB
testcase_15 AC 190 ms
82,944 KB
testcase_16 AC 197 ms
83,072 KB
testcase_17 AC 93 ms
75,264 KB
testcase_18 AC 92 ms
75,136 KB
testcase_19 AC 91 ms
75,648 KB
testcase_20 AC 120 ms
78,592 KB
testcase_21 AC 108 ms
77,696 KB
testcase_22 AC 153 ms
80,768 KB
testcase_23 AC 156 ms
80,896 KB
testcase_24 AC 120 ms
78,208 KB
testcase_25 AC 113 ms
77,952 KB
testcase_26 AC 211 ms
83,584 KB
testcase_27 AC 99 ms
77,952 KB
testcase_28 AC 207 ms
84,224 KB
testcase_29 AC 123 ms
78,336 KB
testcase_30 AC 209 ms
83,712 KB
testcase_31 AC 101 ms
78,080 KB
testcase_32 AC 98 ms
77,824 KB
testcase_33 AC 132 ms
78,848 KB
testcase_34 AC 150 ms
80,256 KB
testcase_35 AC 216 ms
83,712 KB
testcase_36 AC 113 ms
77,440 KB
testcase_37 AC 188 ms
82,816 KB
testcase_38 AC 167 ms
81,664 KB
testcase_39 AC 212 ms
83,968 KB
testcase_40 AC 88 ms
75,136 KB
testcase_41 AC 91 ms
75,392 KB
testcase_42 AC 195 ms
83,328 KB
testcase_43 AC 203 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki843
import sys

x=int(raw_input())
if x<2:
 print 0
 sys.exit()
def prime_list(x):
 pl=[2]
 for i in range(3,x+1):
  for j in pl:
   if j*j>i:
    pl.append(i)
    break
   if i%j==0:
    break
 return pl

p=prime_list(x)
s=set(p)
res=1
for i in p[1:]:
 if i*i-2 in s:
  res+=2
print res
0