結果

問題 No.458 異なる素数の和
ユーザー mbanmban
提出日時 2016-12-22 14:17:46
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,867 bytes
コンパイル時間 1,190 ms
コンパイル使用メモリ 111,312 KB
実行使用メモリ 197,600 KB
最終ジャッジ日時 2024-12-14 14:25:28
合計ジャッジ時間 8,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,596 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 76 ms
33,688 KB
testcase_04 AC 94 ms
39,092 KB
testcase_05 AC 1,025 ms
172,064 KB
testcase_06 WA -
testcase_07 AC 26 ms
25,808 KB
testcase_08 AC 1,023 ms
173,360 KB
testcase_09 AC 39 ms
26,420 KB
testcase_10 AC 24 ms
23,600 KB
testcase_11 AC 1,310 ms
197,600 KB
testcase_12 AC 25 ms
23,536 KB
testcase_13 AC 24 ms
25,564 KB
testcase_14 AC 25 ms
23,808 KB
testcase_15 AC 25 ms
25,588 KB
testcase_16 AC 49 ms
31,124 KB
testcase_17 AC 24 ms
25,596 KB
testcase_18 AC 25 ms
25,576 KB
testcase_19 AC 25 ms
23,600 KB
testcase_20 AC 25 ms
23,724 KB
testcase_21 AC 24 ms
25,696 KB
testcase_22 AC 24 ms
23,532 KB
testcase_23 AC 25 ms
25,984 KB
testcase_24 AC 25 ms
23,280 KB
testcase_25 AC 24 ms
25,704 KB
testcase_26 AC 25 ms
23,928 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 31 ms
24,496 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    static int[] Primes;
    static int N = int.Parse(Console.ReadLine());
    static void Main()
    {
        PrimeCalc();
        int[,] B = new int[N + 1, Primes.Length + 1];
        for(int i = 0; i <= N; i++)
        {
            for(int j = 0; j <= Primes.Length;j++)
            {
                B[i, j] = -1;
            }
        }
        B[0, 0] = 0;
        for(int i = 0; i < Primes.Length; i++)
        {
            for(int j = 0; j <= N; j++)
            {
                if (B[j, i] == -1)
                {
                    continue;
                }
                B[j, i + 1] = B[j, i];
                if (j + Primes[i] > N)
                {
                    continue;
                }
                B[j + Primes[i], i + 1] = B[j, i] + 1;
            }
        }
       int max = -1;
        for(int i = 1; i <= Primes.Length; i++)
        {
            max = Math.Max(max, B[N,i]);
        }
        Console.WriteLine(max);


    }
    static void PrimeCalc()
    {
        bool[] a = new bool[N + 1];
        a[0] = true;
        a[1] = true;
        for(int i = 2; i <= Math.Sqrt(N); i++)
        {
            if (!a[i])
            {
                for(int j = i * 2; j <= N; j += i)
                {
                    a[j] = true;
                }
            }
        }
        List<int> L = new List<int>();
        for(int i = 0; i <= N; i++)
        {
            if (!a[i])
            {
                L.Add(i);
            }
        }
        Primes = L.ToArray();
    }
}
struct A
{
    public A(int num,int cnt)
    {
        Num = num;
        Cnt = cnt;
    }
    public int Num;
    public int Cnt;
}
0