結果

問題 No.843 Triple Primes
ユーザー eQeeQe
提出日時 2020-05-06 12:25:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-06-28 13:12:23
合計ジャッジ時間 10,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
72,832 KB
testcase_01 AC 374 ms
87,936 KB
testcase_02 AC 71 ms
75,904 KB
testcase_03 AC 70 ms
75,520 KB
testcase_04 AC 71 ms
76,160 KB
testcase_05 AC 70 ms
75,904 KB
testcase_06 AC 71 ms
76,032 KB
testcase_07 AC 294 ms
87,936 KB
testcase_08 AC 318 ms
88,192 KB
testcase_09 AC 363 ms
87,936 KB
testcase_10 AC 304 ms
88,064 KB
testcase_11 AC 338 ms
88,064 KB
testcase_12 AC 363 ms
88,320 KB
testcase_13 AC 350 ms
88,064 KB
testcase_14 AC 350 ms
88,288 KB
testcase_15 AC 299 ms
88,448 KB
testcase_16 AC 303 ms
88,192 KB
testcase_17 AC 65 ms
72,832 KB
testcase_18 AC 64 ms
73,088 KB
testcase_19 AC 65 ms
73,088 KB
testcase_20 AC 131 ms
88,064 KB
testcase_21 AC 97 ms
84,480 KB
testcase_22 AC 215 ms
87,936 KB
testcase_23 AC 221 ms
88,064 KB
testcase_24 AC 135 ms
88,192 KB
testcase_25 AC 120 ms
88,448 KB
testcase_26 AC 366 ms
88,192 KB
testcase_27 AC 78 ms
78,080 KB
testcase_28 AC 355 ms
88,320 KB
testcase_29 AC 141 ms
88,320 KB
testcase_30 AC 358 ms
88,192 KB
testcase_31 AC 84 ms
79,872 KB
testcase_32 AC 77 ms
77,568 KB
testcase_33 AC 147 ms
88,448 KB
testcase_34 AC 196 ms
88,320 KB
testcase_35 AC 369 ms
88,192 KB
testcase_36 AC 113 ms
88,320 KB
testcase_37 AC 286 ms
88,320 KB
testcase_38 AC 239 ms
88,704 KB
testcase_39 AC 356 ms
88,192 KB
testcase_40 AC 64 ms
73,088 KB
testcase_41 AC 64 ms
72,960 KB
testcase_42 AC 310 ms
88,448 KB
testcase_43 AC 333 ms
88,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from math import sqrt
import sys
from collections import deque, defaultdict
from heapq import heappop,heappush
from copy import deepcopy

INF=10**18
MOD=10**9+7
MAX=10**5+7

isp=[1]*MAX*5*2
def eratos(n):
  global isp
  isp[0]=isp[1]=0
  for i in range(2, int(sqrt(n)+1)):
    if isp[i]==0: continue
    for j in range(i+i, n+1, i):
      isp[j]=0    

def main():
  global isp
  N=int(input())
  eratos(N*2)

  ans=0
  for r in range(min(N+1, int(sqrt(N*2)+1))):
    if isp[r]==0: continue
    for p in range(N+1):
      if isp[p]==0: continue
      q=r*r-p
      if 0<q<=N and isp[q]==1:
        ans+=1
        
  print(ans)

if __name__=='__main__':
  main()



0