結果
問題 | No.826 連絡網 |
ユーザー | stng |
提出日時 | 2022-07-09 17:01:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,087 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 128,084 KB |
最終ジャッジ日時 | 2024-06-09 23:53:29 |
合計ジャッジ時間 | 4,830 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
59,728 KB |
testcase_01 | AC | 33 ms
53,420 KB |
testcase_02 | AC | 42 ms
63,056 KB |
testcase_03 | AC | 89 ms
75,932 KB |
testcase_04 | AC | 111 ms
76,532 KB |
testcase_05 | AC | 67 ms
76,044 KB |
testcase_06 | AC | 74 ms
76,184 KB |
testcase_07 | AC | 103 ms
76,324 KB |
testcase_08 | AC | 73 ms
76,268 KB |
testcase_09 | AC | 111 ms
76,232 KB |
testcase_10 | AC | 52 ms
73,152 KB |
testcase_11 | AC | 84 ms
76,204 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
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)