結果
| 問題 |
No.1917 LCMST
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 15:56:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 377 bytes |
| コンパイル時間 | 181 ms |
| コンパイル使用メモリ | 82,844 KB |
| 実行使用メモリ | 225,024 KB |
| 最終ジャッジ日時 | 2025-06-12 15:57:24 |
| 合計ジャッジ時間 | 15,330 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 WA * 33 |
ソースコード
import sys
import math
def main():
input = sys.stdin.read().split()
n = int(input[0])
a = list(map(int, input[1:n+1]))
x = min(a)
count_x = a.count(x)
sum_total = (count_x - 1) * x
for num in a:
if num != x:
g = math.gcd(x, num)
sum_total += (x * num) // g
print(sum_total)
if __name__ == "__main__":
main()
gew1fw