結果

問題 No.937 Ultra Sword
ユーザー pekempeypekempey
提出日時 2019-11-30 15:05:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 3,000 ms
コード長 524 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 91,556 KB
最終ジャッジ日時 2024-11-21 03:23:16
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
78,700 KB
testcase_01 AC 122 ms
78,736 KB
testcase_02 AC 125 ms
78,976 KB
testcase_03 AC 120 ms
78,672 KB
testcase_04 AC 126 ms
78,644 KB
testcase_05 AC 162 ms
91,368 KB
testcase_06 AC 153 ms
87,348 KB
testcase_07 AC 155 ms
88,924 KB
testcase_08 AC 138 ms
81,856 KB
testcase_09 AC 136 ms
79,884 KB
testcase_10 AC 160 ms
90,820 KB
testcase_11 AC 132 ms
79,264 KB
testcase_12 AC 151 ms
88,720 KB
testcase_13 AC 153 ms
88,764 KB
testcase_14 AC 155 ms
90,868 KB
testcase_15 AC 145 ms
86,124 KB
testcase_16 AC 123 ms
78,728 KB
testcase_17 AC 130 ms
78,784 KB
testcase_18 AC 147 ms
87,332 KB
testcase_19 AC 141 ms
83,408 KB
testcase_20 AC 140 ms
81,996 KB
testcase_21 AC 153 ms
91,296 KB
testcase_22 AC 124 ms
78,684 KB
testcase_23 AC 122 ms
78,616 KB
testcase_24 AC 157 ms
91,556 KB
testcase_25 AC 167 ms
89,504 KB
testcase_26 AC 154 ms
86,328 KB
testcase_27 AC 157 ms
86,436 KB
testcase_28 AC 154 ms
87,556 KB
testcase_29 AC 141 ms
78,832 KB
testcase_30 AC 145 ms
84,308 KB
testcase_31 AC 174 ms
90,900 KB
testcase_32 AC 156 ms
84,188 KB
testcase_33 AC 168 ms
91,284 KB
testcase_34 AC 138 ms
78,900 KB
testcase_35 AC 140 ms
79,140 KB
testcase_36 AC 163 ms
89,104 KB
testcase_37 AC 142 ms
78,992 KB
testcase_38 AC 155 ms
86,024 KB
testcase_39 AC 140 ms
79,000 KB
testcase_40 AC 162 ms
87,564 KB
testcase_41 AC 153 ms
80,740 KB
testcase_42 AC 158 ms
84,900 KB
testcase_43 AC 151 ms
84,132 KB
testcase_44 AC 134 ms
79,184 KB
testcase_45 AC 146 ms
81,448 KB
testcase_46 AC 144 ms
81,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

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

lg = [0] * (1 << 17)
for i in range(1, 1 << 17):
  lg[i] = lg[i >> 1] + 1

def gcd(x, y):
  while y != 0:
    if x < y:
      x, y = y, x
    else:
      k = lg[x] - lg[y]
      x ^= y << k
  return x

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