結果

問題 No.136 Yet Another GCD Problem
ユーザー 14番
提出日時 2016-04-18 07:57:40
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,347 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 113,688 KB
実行使用メモリ 28,064 KB
最終ジャッジ日時 2024-10-04 13:24:00
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
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[] inpt = Reader.GetInt();
        int total = inpt[0];
        int maxItemCount = inpt[1];
        
        this.CreatePrimeNumberList(total);
        int ans = 1;
        if(total % 2 == 0) {
            ans = total / 2;
        } else
        {
            foreach (int num in PrimeNumberList)
            {
                if(total % num == 0) {
                    int tmp = total / num;
                    ans = tmp * (num / 2);
                    break;
                }
            }
            
        }
        Console.WriteLine(ans);
    }
    
    private List<int> PrimeNumberList = new List<int>();
    
    private void CreatePrimeNumberList(int max) {
        bool[] flags = new bool[max+1];
        List<int> list = new List<int>();
        
        for(int i=2; i<max; i++) {
            if(!flags[i]) {
                list.Add(i);
                for(int j=1; j<=max/i; j++) {
                    flags[i*j] = true;
                }
            }
        }
        this.PrimeNumberList = list;
    }

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


21 2


 
";
        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();
            }
        }
        public static int[] GetInt(char delimiter = ' ', bool trim = false)
        {
            string inptStr = ReadLine();
            if (trim)
            {
                inptStr = inptStr.Trim();
            }
            string[] inpt = inptStr.Split(delimiter);
            int[] ret = new int[inpt.Length];
            for (int i = 0; i < inpt.Length; i++)
            {
                ret[i] = int.Parse(inpt[i]);
            }
            return ret;
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0