結果

問題 No.339 何人が回答したのか
ユーザー 14番14番
提出日時 2016-05-25 00:44:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 1,827 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 113,724 KB
実行使用メモリ 26,676 KB
最終ジャッジ日時 2024-10-07 06:52:18
合計ジャッジ時間 6,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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.Generic;
using System.Text;
using System.Linq;

class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int numCount = int.Parse(Reader.ReadLine());
        
        int[] inpt = new int[numCount];
        
        for(int i=0; i<numCount; i++) {
            inpt[i] = int.Parse(Reader.ReadLine());
        }
        
        int kouyaku = this.GetKouyaku(inpt);
        int ans = 0;
        inpt.ToList().ForEach(a=>ans += (a/kouyaku));
        
        Console.WriteLine(ans);

    }
    
    private int GetKouyaku(int[] numList) {
        if(numList.Length == 1) {
            return numList[0];
        }

        int kouyaku = numList[0];
        for(int i=1; i<numList.Length; i++) {
            kouyaku = this.GetKouyakuSub(Math.Max(kouyaku, numList[i]), Math.Min(kouyaku, numList[i]));
        }
        return kouyaku;
    }
    
    private int GetKouyakuSub(int numA, int numB) {
        if(numA % numB == 0) {
            return numB;
        } else {
            int amari = numA % numB;
            return this.GetKouyakuSub(numB, amari);
        }
    }
    
    
    

    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"


3
60
30
10



";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0