結果

問題 No.826 連絡網
ユーザー tnodinotnodino
提出日時 2022-06-15 18:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 993 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 197,284 KB
最終ジャッジ日時 2024-10-04 13:53:16
合計ジャッジ時間 5,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,892 KB
testcase_01 AC 33 ms
53,316 KB
testcase_02 AC 39 ms
60,520 KB
testcase_03 AC 60 ms
72,392 KB
testcase_04 AC 61 ms
74,228 KB
testcase_05 AC 57 ms
68,684 KB
testcase_06 AC 55 ms
69,684 KB
testcase_07 AC 64 ms
73,616 KB
testcase_08 AC 56 ms
69,072 KB
testcase_09 AC 62 ms
73,836 KB
testcase_10 AC 54 ms
67,928 KB
testcase_11 AC 61 ms
72,060 KB
testcase_12 AC 244 ms
150,360 KB
testcase_13 AC 139 ms
107,540 KB
testcase_14 AC 213 ms
135,940 KB
testcase_15 AC 81 ms
81,844 KB
testcase_16 AC 155 ms
110,776 KB
testcase_17 AC 143 ms
108,572 KB
testcase_18 AC 127 ms
101,728 KB
testcase_19 AC 302 ms
172,480 KB
testcase_20 AC 135 ms
90,168 KB
testcase_21 AC 62 ms
73,516 KB
testcase_22 AC 145 ms
107,504 KB
testcase_23 AC 175 ms
123,072 KB
testcase_24 AC 102 ms
87,492 KB
testcase_25 AC 362 ms
196,424 KB
testcase_26 AC 118 ms
100,496 KB
testcase_27 AC 237 ms
150,240 KB
testcase_28 AC 245 ms
148,784 KB
testcase_29 AC 145 ms
109,328 KB
testcase_30 AC 367 ms
197,284 KB
testcase_31 AC 153 ms
110,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
setrecursionlimit(10**6)

class UnionFind:
    def __init__(self, sz):
        self.par = [-1] * (sz+1)

    def root(self, pos):
        if self.par[pos] < 0:
            return pos
        self.par[pos] = self.root(self.par[pos])
        return self.par[pos]

    def unite(self, u, v):
        u = self.root(u)
        v = self.root(v)
        if u == v:
            return
        self.par[u] += self.par[v]
        self.par[v] = u

    def same(self, u, v):
        if self.root(u) == self.root(v):
            return True
        return False

    def size(self, pos):
        return -self.par[self.root(pos)]

def sieve_of_eratosthenes(N):
    P = UnionFind(N)
    flg = [0] * (N+1)
    for i in range(2,N+1):
        if flg[i] == 0:
            idx = i
            while idx <= N:
                P.unite(i, idx)
                flg[idx] = 1
                idx += i
    return P

N,P = map(int,input().split())
print(sieve_of_eratosthenes(N).size(P))
0