結果

問題 No.843 Triple Primes
ユーザー sho_00sho_00
提出日時 2020-04-11 20:09:17
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 535 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 175,744 KB
最終ジャッジ日時 2024-09-19 08:20:10
合計ジャッジ時間 43,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 TLE -
testcase_02 AC 43 ms
60,800 KB
testcase_03 AC 40 ms
59,648 KB
testcase_04 AC 46 ms
62,464 KB
testcase_05 AC 44 ms
60,288 KB
testcase_06 AC 45 ms
62,976 KB
testcase_07 AC 1,516 ms
152,704 KB
testcase_08 AC 1,758 ms
159,688 KB
testcase_09 TLE -
testcase_10 AC 1,602 ms
154,112 KB
testcase_11 AC 1,928 ms
165,676 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,561 ms
153,600 KB
testcase_16 AC 1,613 ms
154,112 KB
testcase_17 AC 35 ms
52,096 KB
testcase_18 AC 33 ms
52,224 KB
testcase_19 AC 33 ms
51,968 KB
testcase_20 AC 268 ms
90,496 KB
testcase_21 AC 123 ms
78,800 KB
testcase_22 AC 807 ms
123,776 KB
testcase_23 AC 862 ms
125,952 KB
testcase_24 AC 291 ms
92,288 KB
testcase_25 AC 200 ms
84,968 KB
testcase_26 TLE -
testcase_27 AC 58 ms
71,552 KB
testcase_28 TLE -
testcase_29 AC 320 ms
94,208 KB
testcase_30 TLE -
testcase_31 AC 77 ms
76,600 KB
testcase_32 AC 56 ms
69,632 KB
testcase_33 AC 370 ms
98,048 KB
testcase_34 AC 698 ms
118,184 KB
testcase_35 TLE -
testcase_36 AC 174 ms
82,536 KB
testcase_37 AC 1,451 ms
147,712 KB
testcase_38 AC 1,072 ms
134,272 KB
testcase_39 TLE -
testcase_40 AC 34 ms
52,480 KB
testcase_41 AC 34 ms
52,352 KB
testcase_42 AC 1,749 ms
157,820 KB
testcase_43 AC 1,919 ms
166,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math,sys

N=int(input())
if N==1:
  print(0)
  sys.exit()

def searchPrimeNum(N):  # 素数列挙 こっち使う
  max = int(math.sqrt(N))
  searchList = [i for i in range(2,N+1)]
  primeNum = []
  while searchList[0] <= max:
    primeNum.append(searchList[0])
    tmp = searchList[0]
    searchList = [i for i in searchList if i % tmp != 0]
  primeNum.extend(searchList)
  return primeNum


table=searchPrimeNum(N)
cnt=0
for r in table:
  p=r**2-2
  if p in table:
    if p!=2:
      cnt+=2
    else:
      cnt+=1
print(cnt)
0