P4549 模板裴蜀定理
Posted wstong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P4549 模板裴蜀定理相关的知识,希望对你有一定的参考价值。
1 #include <bits/stdc++.h> 2 using namespace std; 3 int main() { 4 int n; scanf("%d",&n); 5 int ans; 6 for (int i = 1; i <= n; ++i) { 7 int x; scanf("%d",&x); 8 x = abs(x); 9 if (i == 1) ans = x; 10 else ans = __gcd(ans,x); 11 } 12 printf("%d ",ans); 13 return 0; 14 }
以上是关于P4549 模板裴蜀定理的主要内容,如果未能解决你的问题,请参考以下文章