結果

問題 No.1917 LCMST
ユーザー PNJPNJ
提出日時 2024-08-29 19:42:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 235,628 KB
最終ジャッジ日時 2024-08-29 19:42:34
合計ジャッジ時間 13,846 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,708 KB
testcase_01 AC 47 ms
61,032 KB
testcase_02 AC 42 ms
60,292 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 233 ms
224,120 KB
testcase_30 AC 233 ms
224,340 KB
testcase_31 AC 243 ms
224,192 KB
testcase_32 AC 245 ms
223,980 KB
testcase_33 AC 231 ms
224,820 KB
testcase_34 AC 223 ms
224,604 KB
testcase_35 AC 226 ms
225,720 KB
testcase_36 AC 225 ms
225,236 KB
testcase_37 AC 242 ms
225,116 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
M = 100000
B = [0] * (M + 1)
m = min(A)

for a in A:
  B[a] += 1

ans = 0
for a in range(1,M + 1):
  if B[a] == 0:
    continue
  ans += a * (B[a] - 1)
  B[a] = 1

for a in range(2,M + 1):
  if B[a] == 0:
    continue
  for i in range(2,M + 1):
    if a * i > M:
      break
    if B[a * i]:
      B[a * i] = 0
      ans += a * i
for a in range(m + 1,M + 1):
  if B[a]:
    ans += a * m
print(ans)
0