結果

問題 No.339 何人が回答したのか
ユーザー mban
提出日時 2017-01-10 06:40:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 1,811 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 111,568 KB
実行使用メモリ 28,048 KB
最終ジャッジ日時 2024-12-18 00:21:33
合計ジャッジ時間 4,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 61
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;


class Magatro
{
    static Scanner sc = new Scanner();

    static void Main()
    {
        int N = sc.NextInt();
        int[] A = new int[N];

        for(int i = 0; i < N; i++)
        {
            A[i] = sc.NextInt();
        }
        Console.WriteLine(100 / GCD(A));
    }
    static int GCD(int[] array)
    {
        int ans = array[0];
        for(int i = 1; i < array.Length; i++)
        {
            ans = GCD(ans, array[i]);
        }
        return ans;
    }
    static int GCD(int a,int b)
    {
        if (a < b)
        {
            Swap(ref a, ref b);
        }
        int r = a % b;
        while (r > 0)
        {
            a = b;
            b = r;
            r = a % b;
        }
        return b;
    }
    static void Swap(ref int a,ref int b)
    {
        int temp = a;
        a = b;
        b = temp;
    }
}

public class Scanner
{
    public string[] S;
    private int Index;
    private char Separator;
    public Scanner(char separator=' ')
    {
        Index = 0;
        Separator = separator;
    }
    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    } 
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}
0