結果
問題 |
No.1917 LCMST
|
ユーザー |
![]() |
提出日時 | 2025-04-16 16:19:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 230 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 224,856 KB |
最終ジャッジ日時 | 2025-04-16 16:21:35 |
合計ジャッジ時間 | 14,522 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 WA * 33 |
ソースコード
import math n = int(input()) a = list(map(int, input().split())) m = min(a) count_m = a.count(m) total = (count_m - 1) * m for num in a: if num != m: g = math.gcd(m, num) total += (m * num) // g print(total)