結果
問題 | No.1917 LCMST |
ユーザー | ああいい |
提出日時 | 2022-04-29 23:10:23 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 962 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 82,008 KB |
実行使用メモリ | 849,188 KB |
最終ジャッジ日時 | 2024-06-29 04:53:17 |
合計ジャッジ時間 | 11,761 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
59,216 KB |
testcase_01 | AC | 36 ms
59,364 KB |
testcase_02 | AC | 36 ms
58,960 KB |
testcase_03 | AC | 918 ms
170,460 KB |
testcase_04 | AC | 936 ms
168,404 KB |
testcase_05 | AC | 939 ms
167,860 KB |
testcase_06 | AC | 897 ms
170,424 KB |
testcase_07 | AC | 903 ms
169,536 KB |
testcase_08 | AC | 37 ms
59,732 KB |
testcase_09 | MLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
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 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
N = int(input()) A = list(map(int,input().split())) A.sort() C = 10 ** 5 + 1 dat = [-1] * C parent = list(range(N)) import sys sys.setrecursionlimit(10 ** 8) def find(i): if parent[i] == i: return i parent[i] = find(parent[i]) return parent[i] def unit(i,j): I = find(i) J = find(j) if I == J:return False parent[I] = J parent[i] = J return True def isSame(i,j): return find(i) == find(j) def lcm(a,b): x,y = a,b while True: r = a % b a = b b = r if r == 0: return x // a * y l = [] ans = 0 for i in range(N): a = A[i] if dat[a] >= 0: ans += a unit(i,dat[a]) continue for j in range(a,C,a): dat[j] = i for j in range(i + 1,N): if A[j] % a == 0:continue l.append((lcm(a,A[j]),i,j)) l.sort(key = lambda x:x[0]) for t,i,j in l: if not isSame(i,j): ans += t unit(i,j) print(ans)