結果

問題 No.826 連絡網
ユーザー sho_00sho_00
提出日時 2020-04-09 21:02:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 111,360 KB
最終ジャッジ日時 2024-09-13 20:22:44
合計ジャッジ時間 4,820 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,520 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 52 ms
62,720 KB
testcase_03 AC 76 ms
74,752 KB
testcase_04 AC 95 ms
77,440 KB
testcase_05 AC 66 ms
69,248 KB
testcase_06 AC 67 ms
69,632 KB
testcase_07 AC 86 ms
77,056 KB
testcase_08 AC 69 ms
70,656 KB
testcase_09 AC 88 ms
77,184 KB
testcase_10 AC 61 ms
66,560 KB
testcase_11 AC 72 ms
73,600 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def primenumber_table(N):  # N以下の素数テーブル エラトステネスの篩
  table=[i for i in range(2,N+1)]
  l=[]
  while len(table)!=0:
    num=table[0]
    l.append(num)
    i=0
    while i<len(table):
      if table[i]%num==0:
        table.pop(i)
      else:
        i+=1
  return l

if P==1:
  print(1)
else:
  E=[[] for _ in range(N)]
  table=primenumber_table(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