結果

問題 No.339 何人が回答したのか
ユーザー 14番14番
提出日時 2016-05-25 00:44:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 1,000 ms
コード長 1,827 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 110,860 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-04-16 12:25:49
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,432 KB
testcase_01 AC 27 ms
18,432 KB
testcase_02 AC 28 ms
18,304 KB
testcase_03 AC 26 ms
18,304 KB
testcase_04 AC 27 ms
18,304 KB
testcase_05 AC 28 ms
18,432 KB
testcase_06 AC 27 ms
18,432 KB
testcase_07 AC 27 ms
18,304 KB
testcase_08 AC 27 ms
18,176 KB
testcase_09 AC 26 ms
18,304 KB
testcase_10 AC 27 ms
18,432 KB
testcase_11 AC 26 ms
18,304 KB
testcase_12 AC 27 ms
18,432 KB
testcase_13 AC 27 ms
18,560 KB
testcase_14 AC 27 ms
18,432 KB
testcase_15 AC 27 ms
18,304 KB
testcase_16 AC 27 ms
18,432 KB
testcase_17 AC 27 ms
18,432 KB
testcase_18 AC 26 ms
18,176 KB
testcase_19 AC 27 ms
18,560 KB
testcase_20 AC 26 ms
18,432 KB
testcase_21 AC 26 ms
18,432 KB
testcase_22 AC 27 ms
18,560 KB
testcase_23 AC 27 ms
18,432 KB
testcase_24 AC 27 ms
18,432 KB
testcase_25 AC 27 ms
18,304 KB
testcase_26 AC 26 ms
18,432 KB
testcase_27 AC 26 ms
18,304 KB
testcase_28 AC 27 ms
18,432 KB
testcase_29 AC 27 ms
18,304 KB
testcase_30 AC 27 ms
18,304 KB
testcase_31 AC 27 ms
18,432 KB
testcase_32 AC 27 ms
18,176 KB
testcase_33 AC 27 ms
18,560 KB
testcase_34 AC 27 ms
18,432 KB
testcase_35 AC 27 ms
18,432 KB
testcase_36 AC 27 ms
18,176 KB
testcase_37 AC 27 ms
18,560 KB
testcase_38 AC 27 ms
18,304 KB
testcase_39 AC 27 ms
18,560 KB
testcase_40 AC 27 ms
18,304 KB
testcase_41 AC 27 ms
18,560 KB
testcase_42 AC 28 ms
18,304 KB
testcase_43 AC 27 ms
18,304 KB
testcase_44 AC 27 ms
18,688 KB
testcase_45 AC 27 ms
18,560 KB
testcase_46 AC 27 ms
18,560 KB
testcase_47 AC 27 ms
18,432 KB
testcase_48 AC 26 ms
18,560 KB
testcase_49 AC 27 ms
18,304 KB
testcase_50 AC 27 ms
18,560 KB
testcase_51 AC 27 ms
18,432 KB
testcase_52 AC 27 ms
18,176 KB
testcase_53 AC 27 ms
18,432 KB
testcase_54 AC 27 ms
18,432 KB
testcase_55 AC 27 ms
18,560 KB
testcase_56 AC 27 ms
18,176 KB
testcase_57 AC 27 ms
18,560 KB
testcase_58 AC 28 ms
18,304 KB
testcase_59 AC 27 ms
18,560 KB
testcase_60 AC 27 ms
18,560 KB
testcase_61 AC 26 ms
18,432 KB
testcase_62 AC 27 ms
18,688 KB
testcase_63 AC 27 ms
18,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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