結果

問題 No.1917 LCMST
ユーザー gew1fw
提出日時 2025-06-12 16:27:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 224,968 KB
最終ジャッジ日時 2025-06-12 16:28:07
合計ジャッジ時間 15,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
A = list(map(int, input().split()))
m = min(A)
k = A.count(m)
total = 0
for x in A:
    if x == m:
        continue
    g = math.gcd(m, x)
    total += (m * x) // g
total += (k - 1) * m
print(total)
0