結果

問題 No.826 連絡網
ユーザー dice4084dice4084
提出日時 2022-12-27 23:25:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 96,128 KB
最終ジャッジ日時 2024-05-02 01:29:43
合計ジャッジ時間 4,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind():
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [0]*n
        self.siz = [1]*n
    
    def root(self, x):
        if self.par[x] == -1:
            return x
        self.par[x] = self.root(self.par[x])
        return self.par[x]
    
    def is_same(self, x, y):
        return self.root(x) == self.root(y)
    
    def unite(self, x, y):
        if self.is_same(x, y):
            return False
        
        rx = self.root(x)
        ry = self.root(y)
        if self.rank[rx] < self.rank[ry]:
            rx, ry = ry, rx
        elif self.rank[rx] == self.rank[ry]:
            self.rank[rx] += 1
        
        self.par[ry] = rx
        self.siz[rx] += self.siz[ry]
        return True
    
    def size(self, x):
        return self.siz[self.root(x)]

n, p = map(int, input().split())
uf = UnionFind(n+1)
for i in range(2, int(n**0.5)+2):
    for j in range(i, n+1, i):
        uf.unite(i, j)

print(uf.size(p))
0