結果

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

ソースコード

diff #

import math

n = int(input())
a = list(map(int, input().split()))
x = min(a)
total = 0
for num in a:
    g = math.gcd(x, num)
    total += x * num // g
print(total - x)
0