結果

問題 No.7 プライムナンバーゲーム
ユーザー skewesskewes
提出日時 2015-12-27 17:20:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-10-01 15:39:48
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
17,408 KB
testcase_01 AC 18 ms
17,536 KB
testcase_02 AC 203 ms
17,664 KB
testcase_03 AC 28 ms
17,536 KB
testcase_04 AC 20 ms
17,408 KB
testcase_05 AC 20 ms
17,408 KB
testcase_06 AC 65 ms
17,408 KB
testcase_07 AC 48 ms
17,664 KB
testcase_08 AC 30 ms
17,536 KB
testcase_09 AC 95 ms
17,408 KB
testcase_10 AC 18 ms
17,536 KB
testcase_11 AC 50 ms
17,664 KB
testcase_12 AC 149 ms
17,664 KB
testcase_13 AC 157 ms
17,280 KB
testcase_14 AC 206 ms
17,664 KB
testcase_15 AC 197 ms
17,536 KB
testcase_16 AC 182 ms
17,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace yukicoder
{
    class _007
    {
        static void Main()
        {
            int n = int.Parse(Console.ReadLine());

            bool[] dp = new bool[n + 1];
            bool[] prime = new bool[n + 1];

            dp[0] = true;
            dp[1] = true;
            prime[2] = false;

            for (int i = 3; i < n + 1; i++)
            {
                for (int j = 2; j < i; j++)
                {
                    if (!prime[j])
                    {
                        prime[i] |= i % j == 0;

                        dp[i] |= !dp[i - j];
                    }
                }
            }

            Console.WriteLine(dp[n] ? "Win" : "Lose");
        }
    }
}
0