結果

問題 No.826 連絡網
ユーザー TakoKurageTakoKurage
提出日時 2019-05-03 22:23:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,812 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-06-10 06:41:45
合計ジャッジ時間 17,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
11,008 KB
testcase_03 AC 34 ms
11,008 KB
testcase_04 AC 37 ms
11,136 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 36 ms
11,136 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 38 ms
11,008 KB
testcase_10 AC 28 ms
11,008 KB
testcase_11 AC 34 ms
11,008 KB
testcase_12 AC 1,293 ms
24,576 KB
testcase_13 AC 498 ms
16,384 KB
testcase_14 AC 962 ms
20,992 KB
testcase_15 AC 126 ms
12,160 KB
testcase_16 AC 631 ms
17,792 KB
testcase_17 AC 500 ms
16,640 KB
testcase_18 AC 406 ms
15,232 KB
testcase_19 AC 1,507 ms
26,752 KB
testcase_20 AC 1,432 ms
26,368 KB
testcase_21 AC 42 ms
11,008 KB
testcase_22 AC 516 ms
16,512 KB
testcase_23 AC 654 ms
18,176 KB
testcase_24 AC 292 ms
13,824 KB
testcase_25 AC 1,808 ms
29,568 KB
testcase_26 AC 343 ms
14,720 KB
testcase_27 AC 1,338 ms
24,832 KB
testcase_28 AC 1,050 ms
21,760 KB
testcase_29 AC 513 ms
16,384 KB
testcase_30 AC 1,812 ms
29,824 KB
testcase_31 AC 616 ms
17,536 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