結果

問題 No.339 何人が回答したのか
ユーザー airisairis
提出日時 2016-01-29 22:55:01
言語 Python2
(2.7.18)
結果
AC  
実行時間 23 ms / 1,000 ms
コード長 160 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-21 18:29:04
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import gcd

n = input()
A = []
for i in xrange(n):
  x = input()
  A.append(x)

ans = 0
x = reduce(gcd, A)

for a in A:
  ans += a / x
print ans
0