結果

問題 No.937 Ultra Sword
ユーザー pekempeypekempey
提出日時 2019-11-30 15:00:03
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 461 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 165,320 KB
最終ジャッジ日時 2024-11-21 03:23:05
合計ジャッジ時間 10,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
165,320 KB
testcase_01 AC 105 ms
77,620 KB
testcase_02 AC 103 ms
77,764 KB
testcase_03 AC 105 ms
77,256 KB
testcase_04 AC 104 ms
77,588 KB
testcase_05 AC 140 ms
90,016 KB
testcase_06 RE -
testcase_07 AC 133 ms
87,616 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 134 ms
89,212 KB
testcase_15 AC 128 ms
84,452 KB
testcase_16 RE -
testcase_17 AC 110 ms
77,732 KB
testcase_18 RE -
testcase_19 AC 121 ms
81,912 KB
testcase_20 RE -
testcase_21 AC 135 ms
89,664 KB
testcase_22 WA -
testcase_23 AC 103 ms
77,588 KB
testcase_24 AC 137 ms
89,744 KB
testcase_25 TLE -
testcase_26 WA -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 RE -
testcase_37 RE -
testcase_38 WA -
testcase_39 WA -
testcase_40 RE -
testcase_41 WA -
testcase_42 WA -
testcase_43 RE -
testcase_44 WA -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

N = int(input())
A = list(map(int, input().split()))

def gcd(x, y):
  while y != 0:
    if x < y:
      x, y = y, x
    else:
      k = len(str(x)) - len(str(y))
      x -= y << k
  return y

g = reduce(gcd, A)

f = [0] * 100001
for x in A: f[x] += x

souwa = sum(A)
ans = 10**100

for i in range(1, 100001):
  s = sum(f[j] for j in range(i, 100001, i))
  if gcd(i, g) == g:
    ans = min(ans, souwa - s + s // i)

print(ans)

  
0