結果

問題 No.826 連絡網
ユーザー TakoKurageTakoKurage
提出日時 2019-05-03 22:24:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-11-24 02:25:18
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 46 ms
51,968 KB
testcase_02 AC 54 ms
58,752 KB
testcase_03 AC 76 ms
69,632 KB
testcase_04 AC 78 ms
70,400 KB
testcase_05 AC 74 ms
68,608 KB
testcase_06 AC 74 ms
68,992 KB
testcase_07 AC 77 ms
70,528 KB
testcase_08 AC 76 ms
69,504 KB
testcase_09 AC 77 ms
69,376 KB
testcase_10 AC 63 ms
64,384 KB
testcase_11 AC 78 ms
70,144 KB
testcase_12 AC 132 ms
86,144 KB
testcase_13 AC 96 ms
76,544 KB
testcase_14 AC 119 ms
82,048 KB
testcase_15 AC 83 ms
71,808 KB
testcase_16 AC 105 ms
77,824 KB
testcase_17 AC 99 ms
76,672 KB
testcase_18 AC 95 ms
75,392 KB
testcase_19 AC 145 ms
88,448 KB
testcase_20 AC 140 ms
88,704 KB
testcase_21 AC 80 ms
70,784 KB
testcase_22 AC 99 ms
76,800 KB
testcase_23 AC 104 ms
78,592 KB
testcase_24 AC 89 ms
73,984 KB
testcase_25 AC 147 ms
91,776 KB
testcase_26 AC 89 ms
74,752 KB
testcase_27 AC 136 ms
86,400 KB
testcase_28 AC 117 ms
82,944 KB
testcase_29 AC 97 ms
76,800 KB
testcase_30 AC 152 ms
91,648 KB
testcase_31 AC 101 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, size):
        self.data = [-1 for _ in range(size)]

    def find(self, x):
        if self.data[x] < 0:
            return x
        else:
            self.data[x] = self.find(self.data[x])
            return self.data[x]

    def union(self, x, y):
        x, y = self.find(x), self.find(y)
        if x != y:
            if self.data[y] < self.data[x]:
                x, y = y, x
            self.data[x] += self.data[y]
            self.data[y] = x
        return (x != y)

    def same(self, x, y):
        return (self.find(x) == self.find(y))

    def size(self, x):
        return -self.data[self.find(x)]


def prime_table(n):
    list = [True for _ in range(n + 1)]
    i = 2
    while i * i <= n:
        if list[i]:
            j = i + i
            while j <= n:
                list[j] = False
                j += i
        i += 1

    table = [i for i in range(n + 1) if list[i] and i >= 2]
    return table


N, P = [int(i) for i in input().split()]
uf = UnionFind(N + 1)
for p in prime_table(N):
    q = p
    while q <= N:
        uf.union(p, q)
        q += p
print(uf.size(P))
0