結果

問題 No.826 連絡網
ユーザー sho_00sho_00
提出日時 2020-04-09 21:13:34
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 762 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 271,352 KB
最終ジャッジ日時 2024-09-13 20:38:35
合計ジャッジ時間 21,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,272 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 57 ms
62,208 KB
testcase_03 AC 67 ms
70,144 KB
testcase_04 AC 66 ms
72,064 KB
testcase_05 AC 62 ms
67,536 KB
testcase_06 AC 61 ms
68,008 KB
testcase_07 AC 67 ms
71,296 KB
testcase_08 AC 63 ms
68,432 KB
testcase_09 AC 68 ms
72,064 KB
testcase_10 AC 60 ms
65,804 KB
testcase_11 AC 66 ms
70,272 KB
testcase_12 AC 1,436 ms
264,212 KB
testcase_13 AC 483 ms
127,864 KB
testcase_14 AC 1,071 ms
234,360 KB
testcase_15 AC 121 ms
82,328 KB
testcase_16 AC 661 ms
150,664 KB
testcase_17 AC 497 ms
127,788 KB
testcase_18 AC 400 ms
117,316 KB
testcase_19 AC 1,696 ms
267,152 KB
testcase_20 AC 1,553 ms
267,136 KB
testcase_21 AC 70 ms
74,056 KB
testcase_22 AC 540 ms
128,704 KB
testcase_23 AC 693 ms
154,796 KB
testcase_24 AC 290 ms
103,976 KB
testcase_25 AC 1,988 ms
270,976 KB
testcase_26 AC 314 ms
108,168 KB
testcase_27 AC 1,492 ms
264,832 KB
testcase_28 AC 1,130 ms
243,812 KB
testcase_29 AC 470 ms
127,008 KB
testcase_30 TLE -
testcase_31 AC 661 ms
146,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import math
N,P=map(int,input().split())

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

if P==1:
  print(1)
else:
  E=[[] for _ in range(N)]
  table=searchPrimeNum(N)
  for v in table:
    i=2
    while v*i<=N:
      E[v-1].append(v*i-1)
      E[v*i-1].append(v-1)
      i+=1
  P-=1
  seen=[0]*N
  seen[P]=1
  stack=deque([P])
  cnt=1
  while stack:
    u=stack.pop()
    for v in E[u]:
      if seen[v]!=1:
        seen[v]=1
        cnt+=1
        stack.append(v)
  print(cnt)
0