2015年4月21日 星期二

TIOJ 1156 . 5.高中運動會

我覺得我該停止寫水題._.

#include <cstdio>
#include <cstdlib>
#include <algorithm>
using namespace std;
int main(){
    int t, ans = 0; scanf("%d", &t);
    while(t--){
        int n; scanf("%d", &n);
        ans = __gcd(ans, n);
    }
    printf("%d\n", ans);
    return 0;

}

沒有留言:

張貼留言