結果

問題 No.843 Triple Primes
ユーザー pluto77pluto77
提出日時 2019-07-01 11:19:08
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 84,248 KB
最終ジャッジ日時 2024-07-08 10:07:14
合計ジャッジ時間 7,818 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
75,136 KB
testcase_01 AC 177 ms
83,328 KB
testcase_02 AC 73 ms
76,800 KB
testcase_03 AC 72 ms
76,928 KB
testcase_04 AC 72 ms
77,184 KB
testcase_05 AC 69 ms
77,064 KB
testcase_06 AC 72 ms
77,312 KB
testcase_07 AC 147 ms
82,944 KB
testcase_08 AC 169 ms
84,096 KB
testcase_09 AC 174 ms
83,096 KB
testcase_10 AC 151 ms
82,944 KB
testcase_11 AC 163 ms
83,584 KB
testcase_12 AC 169 ms
82,696 KB
testcase_13 AC 165 ms
83,968 KB
testcase_14 AC 168 ms
83,712 KB
testcase_15 AC 150 ms
82,712 KB
testcase_16 AC 151 ms
83,084 KB
testcase_17 WA -
testcase_18 AC 64 ms
75,648 KB
testcase_19 AC 63 ms
75,568 KB
testcase_20 AC 92 ms
78,464 KB
testcase_21 AC 81 ms
77,376 KB
testcase_22 AC 119 ms
80,408 KB
testcase_23 AC 124 ms
81,024 KB
testcase_24 AC 95 ms
78,356 KB
testcase_25 AC 88 ms
77,568 KB
testcase_26 AC 173 ms
83,200 KB
testcase_27 AC 76 ms
77,612 KB
testcase_28 AC 168 ms
83,584 KB
testcase_29 AC 94 ms
78,216 KB
testcase_30 AC 170 ms
83,328 KB
testcase_31 AC 77 ms
77,440 KB
testcase_32 AC 76 ms
77,184 KB
testcase_33 AC 97 ms
78,336 KB
testcase_34 AC 115 ms
80,544 KB
testcase_35 AC 174 ms
83,452 KB
testcase_36 AC 85 ms
77,980 KB
testcase_37 AC 145 ms
82,688 KB
testcase_38 AC 134 ms
81,536 KB
testcase_39 AC 180 ms
84,248 KB
testcase_40 AC 62 ms
75,136 KB
testcase_41 WA -
testcase_42 AC 154 ms
83,464 KB
testcase_43 AC 163 ms
83,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki843

x=int(raw_input())
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