結果

問題 No.826 連絡網
ユーザー stngstng
提出日時 2022-07-09 17:01:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,087 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 182,404 KB
最終ジャッジ日時 2024-12-31 04:43:33
合計ジャッジ時間 59,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,964 KB
testcase_01 AC 37 ms
161,448 KB
testcase_02 AC 47 ms
69,272 KB
testcase_03 AC 106 ms
176,740 KB
testcase_04 AC 142 ms
83,064 KB
testcase_05 AC 78 ms
182,404 KB
testcase_06 AC 80 ms
83,212 KB
testcase_07 AC 123 ms
172,560 KB
testcase_08 AC 82 ms
83,476 KB
testcase_09 AC 133 ms
177,848 KB
testcase_10 AC 57 ms
79,704 KB
testcase_11 AC 98 ms
176,928 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 188 ms
177,608 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        self.size = [1 for _ in range(n+1)]
    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    # 併合
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

n,p = map(int,input().split())
ki = UnionFind(n+1)

for i in range(2,n):
    tmp = 2
    while tmp*i <= n:
        ki.union(i,tmp*i)
        tmp += 1
        #print(i,tmp*i)

ans = 0
idx = ki.par[p]

for i in range(n):
    if ki.par[i+1] == idx:
        ans += 1

print(ans)
0