結果

問題 No.136 Yet Another GCD Problem
ユーザー 14番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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,980 KB
testcase_01 AC 22 ms
23,860 KB
testcase_02 AC 22 ms
25,880 KB
testcase_03 AC 23 ms
25,996 KB
testcase_04 WA -
testcase_05 AC 22 ms
23,984 KB
testcase_06 WA -
testcase_07 AC 22 ms
23,828 KB
testcase_08 AC 23 ms
25,892 KB
testcase_09 AC 22 ms
23,840 KB
testcase_10 WA -
testcase_11 AC 24 ms
23,836 KB
testcase_12 WA -
testcase_13 AC 23 ms
23,840 KB
testcase_14 AC 23 ms
24,080 KB
testcase_15 WA -
testcase_16 AC 23 ms
26,052 KB
testcase_17 AC 22 ms
24,112 KB
testcase_18 AC 21 ms
26,024 KB
testcase_19 AC 22 ms
23,984 KB
testcase_20 AC 23 ms
25,904 KB
testcase_21 AC 21 ms
23,964 KB
testcase_22 AC 21 ms
26,000 KB
testcase_23 AC 21 ms
26,004 KB
testcase_24 AC 22 ms
23,960 KB
testcase_25 AC 23 ms
26,004 KB
testcase_26 AC 23 ms
23,984 KB
testcase_27 AC 23 ms
25,916 KB
testcase_28 AC 24 ms
24,092 KB
testcase_29 AC 22 ms
24,232 KB
testcase_30 AC 22 ms
24,232 KB
testcase_31 AC 22 ms
25,780 KB
testcase_32 AC 21 ms
23,840 KB
testcase_33 AC 22 ms
25,780 KB
testcase_34 AC 23 ms
23,964 KB
testcase_35 AC 23 ms
23,900 KB
testcase_36 AC 23 ms
23,772 KB
testcase_37 AC 24 ms
24,028 KB
testcase_38 AC 22 ms
23,976 KB
testcase_39 AC 22 ms
23,968 KB
testcase_40 AC 23 ms
28,064 KB
testcase_41 AC 23 ms
25,900 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[] 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