結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー 14番14番
提出日時 2016-09-01 18:19:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 196 ms / 1,000 ms
コード長 1,832 bytes
コンパイル時間 4,902 ms
コンパイル使用メモリ 114,924 KB
実行使用メモリ 47,852 KB
最終ジャッジ日時 2024-12-16 01:13:20
合計ジャッジ時間 4,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
27,056 KB
testcase_01 AC 26 ms
25,008 KB
testcase_02 AC 27 ms
25,140 KB
testcase_03 AC 44 ms
28,720 KB
testcase_04 AC 29 ms
25,264 KB
testcase_05 AC 186 ms
47,084 KB
testcase_06 AC 115 ms
36,432 KB
testcase_07 AC 29 ms
25,012 KB
testcase_08 AC 27 ms
25,012 KB
testcase_09 AC 28 ms
23,224 KB
testcase_10 AC 28 ms
25,140 KB
testcase_11 AC 26 ms
27,272 KB
testcase_12 AC 27 ms
25,008 KB
testcase_13 AC 26 ms
25,268 KB
testcase_14 AC 27 ms
27,052 KB
testcase_15 AC 26 ms
25,232 KB
testcase_16 AC 25 ms
27,144 KB
testcase_17 AC 25 ms
24,884 KB
testcase_18 AC 26 ms
25,132 KB
testcase_19 AC 42 ms
28,600 KB
testcase_20 AC 75 ms
31,948 KB
testcase_21 AC 47 ms
26,928 KB
testcase_22 AC 44 ms
27,048 KB
testcase_23 AC 58 ms
28,600 KB
testcase_24 AC 75 ms
30,064 KB
testcase_25 AC 108 ms
34,152 KB
testcase_26 AC 106 ms
33,908 KB
testcase_27 AC 40 ms
25,780 KB
testcase_28 AC 63 ms
28,760 KB
testcase_29 AC 104 ms
31,736 KB
testcase_30 AC 42 ms
28,556 KB
testcase_31 AC 88 ms
30,824 KB
testcase_32 AC 104 ms
33,848 KB
testcase_33 AC 196 ms
47,852 KB
testcase_34 AC 193 ms
45,712 KB
testcase_35 AC 177 ms
46,788 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.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray();
        int kamoCount = inpt[0];
        int maxX = inpt[1];
        int[] primeList = this.GetPrimeNumbers(maxX);

        long ans = 0;
        for (int i = 0; i < primeList.Length; i++)
        {
            int prime = primeList[i];
            long pos = ((long)kamoCount - 1) * prime;
            if (pos > maxX)
            {
                break;
            }

            ans += (maxX - (pos) + 1);
        }
        Console.WriteLine(ans);


    }

    private int[] GetPrimeNumbers(int max)
    {
        bool[] flag = new bool[max + 1];
        List<int> ans = new List<int>();
        for (int i = 2; i < flag.Length; i++)
        {
            if (!flag[i])
            {
                ans.Add(i);
                for (int j = 1; j <= max / i; j++)
                {
                    flag[i * j] = true;
                }
            }

        }
        return ans.ToArray();
    }


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


8 964853






";
        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