結果

問題 No.458 異なる素数の和
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-09 13:55:02
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,453 ms / 2,000 ms
コード長 1,608 bytes
コンパイル時間 14,139 ms
コンパイル使用メモリ 168,720 KB
実行使用メモリ 222,204 KB
最終ジャッジ日時 2024-11-15 09:37:29
合計ジャッジ時間 24,087 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
30,464 KB
testcase_01 AC 358 ms
80,676 KB
testcase_02 AC 461 ms
96,640 KB
testcase_03 AC 107 ms
41,456 KB
testcase_04 AC 124 ms
44,800 KB
testcase_05 AC 1,139 ms
177,664 KB
testcase_06 AC 446 ms
92,800 KB
testcase_07 AC 67 ms
30,976 KB
testcase_08 AC 1,158 ms
178,944 KB
testcase_09 AC 75 ms
33,920 KB
testcase_10 AC 52 ms
29,432 KB
testcase_11 AC 1,453 ms
207,616 KB
testcase_12 AC 52 ms
29,568 KB
testcase_13 AC 51 ms
29,440 KB
testcase_14 AC 51 ms
29,432 KB
testcase_15 AC 52 ms
29,440 KB
testcase_16 AC 86 ms
36,736 KB
testcase_17 AC 52 ms
29,432 KB
testcase_18 AC 52 ms
29,696 KB
testcase_19 AC 56 ms
29,568 KB
testcase_20 AC 56 ms
29,440 KB
testcase_21 AC 55 ms
29,432 KB
testcase_22 AC 54 ms
29,440 KB
testcase_23 AC 52 ms
29,440 KB
testcase_24 AC 51 ms
29,428 KB
testcase_25 AC 52 ms
29,440 KB
testcase_26 AC 53 ms
29,440 KB
testcase_27 AC 452 ms
89,600 KB
testcase_28 AC 1,369 ms
203,596 KB
testcase_29 AC 73 ms
32,000 KB
testcase_30 AC 288 ms
222,204 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var n = int.Parse(Console.ReadLine());
            var k = Prime(n);
            var m = k.Count;
            var c = new int[n + 1, m + 1];
            c[0, 0] = 1;
            for(var i = 0; i < m; i++)
            {
                for(var j = 0; j <= n; j++)
                {
                    if(c[j, i] > 0)
                    {
                        c[j, i + 1] = Math.Max(c[j, i], c[j, i + 1]);
                        if (j + k[i] <= n)
                        {
                            c[j + k[i], i + 1] = Math.Max(c[j, i] + 1, c[j + k[i], i + 1]);
                        }
                    }
                }
            }
            Console.WriteLine(c[n, m] - 1);
        }
        static List<int> Prime(int n)
        {
            var isPrime = new bool[n + 1];
            var k = new List<int>();
            for (int i = 2; i <= n; i++)
            {
                isPrime[i] = true;
            }

            for (int i = 2; i * i <= n; i++)
            {
                if (isPrime[i])
                {
                    for (int j = i * i; j <= n; j += i)
                    {
                        isPrime[j] = false;
                    }
                }
            }

            for (int i = 2; i <= n; i++)
            {
                if (isPrime[i])
                {
                    k.Add(i);
                }
            }

            return k;
        }
    }
}
0