結果

問題 No.7 プライムナンバーゲーム
ユーザー iwkjoseciwkjosec
提出日時 2019-10-07 11:39:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 403 ms / 5,000 ms
コード長 1,239 bytes
コンパイル時間 3,145 ms
コンパイル使用メモリ 104,960 KB
実行使用メモリ 23,296 KB
最終ジャッジ日時 2024-10-01 16:24:33
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,944 KB
testcase_01 AC 22 ms
19,072 KB
testcase_02 AC 400 ms
23,296 KB
testcase_03 AC 49 ms
20,224 KB
testcase_04 AC 29 ms
19,712 KB
testcase_05 AC 29 ms
19,456 KB
testcase_06 AC 133 ms
21,632 KB
testcase_07 AC 97 ms
21,248 KB
testcase_08 AC 56 ms
20,352 KB
testcase_09 AC 191 ms
22,656 KB
testcase_10 AC 25 ms
19,200 KB
testcase_11 AC 100 ms
20,992 KB
testcase_12 AC 296 ms
23,040 KB
testcase_13 AC 314 ms
23,040 KB
testcase_14 AC 403 ms
22,912 KB
testcase_15 AC 382 ms
22,912 KB
testcase_16 AC 354 ms
23,296 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 static System.Console;
using static System.Math;

class Program
{
    static void Main()
    {
        var N = int.Parse(ReadLine());
        var p = new bool[N + 1];
        for (int i = 0; i < p.Length; i++)
        {
            p[i] = IsPrime(i);
        }
        var dp = new int[N + 1];
        for (int i = 4; i < dp.Length; i++)
        {
            var l = new SortedSet<int>();
            for (int j = 2; j < i-1; j++)
            {
                if (p[j])
                {
                    l.Add(dp[i - j]);
                }
            }
            var c = 0;
            foreach (var a in l)
            {
                if (a != c)
                {
                    dp[i] = c;
                    break;
                }
                c++;
            }
            if (c == l.Count) dp[i] = c;
        }
        WriteLine(dp[N] == 0 ? "Lose" : "Win");
    }

    static bool IsPrime(int n)
    {
        if (n < 2) return false;
        if (n == 2) return true;
        if (n % 2 == 0) return false;
        for (int i = 2; i * i <= n; i++)
        {
            if (n % i == 0) return false;
        }
        return true;
    }
}
0