結果

問題 No.843 Triple Primes
ユーザー sho_00sho_00
提出日時 2020-04-11 20:06:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 498 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 175,488 KB
最終ジャッジ日時 2024-09-19 08:13:47
合計ジャッジ時間 43,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 TLE -
testcase_02 AC 47 ms
60,928 KB
testcase_03 AC 45 ms
59,776 KB
testcase_04 AC 55 ms
62,080 KB
testcase_05 AC 48 ms
59,776 KB
testcase_06 AC 55 ms
62,848 KB
testcase_07 AC 1,538 ms
152,960 KB
testcase_08 AC 1,728 ms
159,360 KB
testcase_09 TLE -
testcase_10 AC 1,590 ms
154,112 KB
testcase_11 AC 1,854 ms
165,504 KB
testcase_12 TLE -
testcase_13 AC 1,937 ms
167,680 KB
testcase_14 AC 1,973 ms
168,064 KB
testcase_15 AC 1,538 ms
153,856 KB
testcase_16 AC 1,543 ms
153,856 KB
testcase_17 RE -
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 279 ms
90,496 KB
testcase_21 AC 131 ms
78,464 KB
testcase_22 AC 795 ms
123,520 KB
testcase_23 AC 938 ms
125,568 KB
testcase_24 AC 299 ms
92,032 KB
testcase_25 AC 204 ms
85,120 KB
testcase_26 TLE -
testcase_27 AC 68 ms
72,064 KB
testcase_28 AC 1,962 ms
169,472 KB
testcase_29 AC 317 ms
93,952 KB
testcase_30 TLE -
testcase_31 AC 87 ms
76,672 KB
testcase_32 AC 63 ms
69,120 KB
testcase_33 AC 378 ms
98,304 KB
testcase_34 AC 701 ms
118,016 KB
testcase_35 TLE -
testcase_36 AC 175 ms
82,304 KB
testcase_37 AC 1,421 ms
147,456 KB
testcase_38 AC 1,050 ms
133,888 KB
testcase_39 TLE -
testcase_40 AC 39 ms
52,224 KB
testcase_41 RE -
testcase_42 AC 1,660 ms
157,568 KB
testcase_43 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N=int(input())

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