結果

問題 No.7 プライムナンバーゲーム
ユーザー HimatsubushinHimatsubushin
提出日時 2021-01-14 07:33:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,557 bytes
コンパイル時間 3,056 ms
コンパイル使用メモリ 104,148 KB
実行使用メモリ 23,896 KB
最終ジャッジ日時 2023-08-15 12:24:48
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
21,612 KB
testcase_01 AC 57 ms
21,640 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 57 ms
21,636 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 57 ms
21,632 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
21,608 KB
testcase_15 AC 58 ms
23,720 KB
testcase_16 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.Generic;
using System.Linq;

namespace No._07
{
    class Program
    {
        static List<int> prime = new List<int>();

        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());

            primeCheck(n);

            if (judgmentCheck(n))
            {
                Console.WriteLine("Win");
            }
            else
            {
                Console.WriteLine("Lose");
            }
        }

        static void primeCheck(int n)
        {
            bool[] data = Enumerable.Repeat(true, n + 1).ToArray();

            for (int i = 4; i <= n; i += 2)
                data[i] = false;

            for (int i = 3; i <= (int)Math.Sqrt((double)n); i += 2)
                for (int j = 2; i * j <= n; j++)
                    data[i * j] = false;

            for (int i = n; i >= 2; i--)
                if (data[i])
                    prime.Add(i);

            return;
        }

        static bool judgmentCheck(int n)
        {
            if (n <= 1)
                return false;
            else
            {
                bool WinLose = false;
                foreach (int a in prime)
                {
                    if (n <= a)
                    {
                        if (!judgmentCheck(n - a))
                        {
                            WinLose = true;
                            break;
                        }
                    }
                }
                return WinLose;
            }
        }
    }
}
0