結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー claw88claw88
提出日時 2016-08-06 11:04:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 75 ms / 1,000 ms
コード長 1,562 bytes
コンパイル時間 922 ms
コンパイル使用メモリ 104,320 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-05-09 10:46:22
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,920 KB
testcase_01 AC 25 ms
17,792 KB
testcase_02 AC 25 ms
18,048 KB
testcase_03 AC 26 ms
17,644 KB
testcase_04 AC 25 ms
17,792 KB
testcase_05 AC 26 ms
18,048 KB
testcase_06 AC 26 ms
17,664 KB
testcase_07 AC 25 ms
17,536 KB
testcase_08 AC 25 ms
17,920 KB
testcase_09 AC 25 ms
17,664 KB
testcase_10 AC 25 ms
18,048 KB
testcase_11 AC 25 ms
17,792 KB
testcase_12 AC 26 ms
17,920 KB
testcase_13 AC 25 ms
17,920 KB
testcase_14 AC 26 ms
17,664 KB
testcase_15 AC 25 ms
17,792 KB
testcase_16 AC 25 ms
18,176 KB
testcase_17 AC 27 ms
17,792 KB
testcase_18 AC 28 ms
17,920 KB
testcase_19 AC 31 ms
17,920 KB
testcase_20 AC 40 ms
19,328 KB
testcase_21 AC 25 ms
17,920 KB
testcase_22 AC 25 ms
17,536 KB
testcase_23 AC 26 ms
17,664 KB
testcase_24 AC 26 ms
17,792 KB
testcase_25 AC 50 ms
21,120 KB
testcase_26 AC 27 ms
18,048 KB
testcase_27 AC 25 ms
18,048 KB
testcase_28 AC 27 ms
17,920 KB
testcase_29 AC 27 ms
18,048 KB
testcase_30 AC 25 ms
17,920 KB
testcase_31 AC 25 ms
18,048 KB
testcase_32 AC 37 ms
19,328 KB
testcase_33 AC 75 ms
25,600 KB
testcase_34 AC 74 ms
25,344 KB
testcase_35 AC 48 ms
20,992 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.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yuki_407
{
    class Program
    {
        static void Main(string[] args)
        {
            var a = scan();
            int max = a[1]/(a[0]-1);
           
            var p = new List<int>();
            if (max>1)
            {
                eratos(p, max);
            }
            long ans = 0;
            foreach (var i in p)
            {
                int m = a[1] - i*(a[0]-1) + 1;
                if (m<=0)
                {
                    break;
                }
                else
                {
                    ans += m;
                }
            }
            Console.WriteLine(ans);
        }
        
        //2~nまでの素数のリスト(n>=2)
        static void eratos(List<int> Prime,int n)
        {
            var a = new bool[n+1];
            a[0] =a[1]= true;
            int i;
            for (i = 2; i*i<=n; i++)
            {
                if (!a[i])
                {
                    Prime.Add(i);
                    int j = i << 1;
                    while (j <= n)
                    {
                        a[j] = true;
                        j = j + i;
                    }
                }    
            }
            for (; i <=n ; i++)if(!a[i])Prime.Add(i);          
        }
        static int[] scan()
        {
            return
                Array.ConvertAll
                (Console.ReadLine().Split(' '), int.Parse);
        }
    }
}
0