結果

問題 No.826 連絡網
ユーザー dice4084dice4084
提出日時 2022-12-28 19:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,944 KB
最終ジャッジ日時 2024-05-03 01:42:17
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 41 ms
62,720 KB
testcase_03 AC 69 ms
75,044 KB
testcase_04 AC 72 ms
76,416 KB
testcase_05 AC 59 ms
73,216 KB
testcase_06 AC 59 ms
72,704 KB
testcase_07 AC 70 ms
76,288 KB
testcase_08 AC 61 ms
72,960 KB
testcase_09 AC 71 ms
76,288 KB
testcase_10 AC 49 ms
67,584 KB
testcase_11 AC 67 ms
75,024 KB
testcase_12 AC 167 ms
93,408 KB
testcase_13 AC 113 ms
83,252 KB
testcase_14 AC 143 ms
88,972 KB
testcase_15 AC 73 ms
77,980 KB
testcase_16 AC 117 ms
85,120 KB
testcase_17 AC 104 ms
83,328 KB
testcase_18 AC 94 ms
81,280 KB
testcase_19 AC 186 ms
96,384 KB
testcase_20 AC 186 ms
95,520 KB
testcase_21 AC 70 ms
76,724 KB
testcase_22 AC 103 ms
83,236 KB
testcase_23 AC 120 ms
85,020 KB
testcase_24 AC 89 ms
80,128 KB
testcase_25 AC 208 ms
99,944 KB
testcase_26 AC 92 ms
81,220 KB
testcase_27 AC 184 ms
94,036 KB
testcase_28 AC 159 ms
89,896 KB
testcase_29 AC 104 ms
82,652 KB
testcase_30 AC 225 ms
99,684 KB
testcase_31 AC 112 ms
84,384 KB
権限があれば一括ダウンロードができます

ソースコード

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, n//2+1):
    for j in range(i, n+1, i):
        uf.unite(i, j)

print(uf.size(p))
0