結果

問題 No.826 連絡網
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-01 04:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 99,452 KB
最終ジャッジ日時 2024-11-17 08:37:03
合計ジャッジ時間 7,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
67,620 KB
testcase_01 AC 74 ms
68,584 KB
testcase_02 AC 83 ms
71,748 KB
testcase_03 AC 93 ms
79,144 KB
testcase_04 AC 96 ms
79,848 KB
testcase_05 AC 91 ms
76,532 KB
testcase_06 AC 93 ms
77,480 KB
testcase_07 AC 95 ms
79,068 KB
testcase_08 AC 95 ms
78,708 KB
testcase_09 AC 91 ms
79,236 KB
testcase_10 AC 91 ms
76,296 KB
testcase_11 AC 92 ms
78,580 KB
testcase_12 AC 300 ms
95,316 KB
testcase_13 AC 170 ms
88,284 KB
testcase_14 AC 244 ms
92,320 KB
testcase_15 AC 110 ms
84,408 KB
testcase_16 AC 190 ms
89,324 KB
testcase_17 AC 172 ms
88,396 KB
testcase_18 AC 151 ms
87,320 KB
testcase_19 AC 335 ms
96,908 KB
testcase_20 AC 336 ms
96,824 KB
testcase_21 AC 95 ms
80,448 KB
testcase_22 AC 171 ms
88,544 KB
testcase_23 AC 194 ms
89,216 KB
testcase_24 AC 134 ms
86,628 KB
testcase_25 AC 374 ms
99,452 KB
testcase_26 AC 139 ms
86,912 KB
testcase_27 AC 301 ms
95,632 KB
testcase_28 AC 249 ms
92,612 KB
testcase_29 AC 169 ms
87,804 KB
testcase_30 AC 379 ms
99,312 KB
testcase_31 AC 186 ms
89,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())

import math

N = 10**6+50
spf = [-1]*(N+1)
for i in range(N+1):
    spf[i] = i
for i in range(2, int(math.sqrt(N))+1):
    if spf[i] == i:
        for j in range(i*2, N+1, i):
            if spf[j] == j:
                spf[j] = i

def Find(x, par):
    if par[x] < 0:
        return x
    else:
        par[x] = Find(par[x], par)
        return par[x]

def Unite(x, y, par, rank):
    x = Find(x, par)
    y = Find(y, par)

    if x != y:
        if rank[x] < rank[y]:
            par[y] += par[x]
            par[x] = y
        else:
            par[x] += par[y]
            par[y] = x
            if rank[x] == rank[y]:
                rank[x] += 1

def Same(x, y, par):
    return Find(x, par) == Find(y, par)

def Size(x, par):
    return -par[Find(x, par)]

par = [-1]*(n+1)
rank = [0]*(n+1)
for i in range(1, n+1):
    j = i
    s = set()
    while j != 1:
        q = spf[j]
        if q not in s:
            Unite(i, q, par, rank)
            s.add(q)
        j //= q
#print(par)
print(Size(p, par))
0