#C. C - Monsters Battle Royale

    传统题 1000ms 256MiB

C - Monsters Battle Royale

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - Monsters Battle Royale

Score : $300$ points

Problem Statement

There are $N$ monsters, numbered $1, 2, ..., N$.

Initially, the health of Monster $i$ is $A_i$.

Below, a monster with at least $1$ health is called alive.

Until there is only one alive monster, the following is repeated:

  • A random alive monster attacks another random alive monster.
  • As a result, the health of the monster attacked is reduced by the amount equal to the current health of the monster attacking.

Find the minimum possible final health of the last monster alive.

Constraints

  • All values in input are integers.
  • $2 \leq N \leq 10^5$
  • $1 \leq A_i \leq 10^9$

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... ANA_N

Output

Print the minimum possible final health of the last monster alive.


4
2 10 8 40
2

When only the first monster keeps on attacking, the final health of the last monster will be $2$, which is minimum.


4
5 13 8 1000000000
1

3
1000000000 1000000000 1000000000
1000000000

2024寒假入门组刷题营(四)

未参加
状态
已结束
规则
ACM/ICPC
题目
7
开始于
2024-2-1 13:30
结束于
2024-2-1 15:30
持续时间
2 小时
主持人
参赛人数
10