結果

問題 No.7 プライムナンバーゲーム
ユーザー AreTrashAreTrash
提出日時 2016-04-14 06:37:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 1,473 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 113,484 KB
実行使用メモリ 26,724 KB
最終ジャッジ日時 2024-10-01 15:42:53
合計ジャッジ時間 2,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,944 KB
testcase_01 AC 26 ms
26,500 KB
testcase_02 AC 49 ms
24,556 KB
testcase_03 AC 27 ms
22,584 KB
testcase_04 AC 27 ms
24,576 KB
testcase_05 AC 27 ms
24,840 KB
testcase_06 AC 32 ms
24,940 KB
testcase_07 AC 30 ms
22,836 KB
testcase_08 AC 29 ms
26,640 KB
testcase_09 AC 35 ms
24,556 KB
testcase_10 AC 26 ms
24,444 KB
testcase_11 AC 31 ms
24,488 KB
testcase_12 AC 41 ms
24,684 KB
testcase_13 AC 44 ms
26,672 KB
testcase_14 AC 49 ms
24,684 KB
testcase_15 AC 47 ms
24,376 KB
testcase_16 AC 46 ms
26,724 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;

namespace No7_1 {
    public class Program {
        public static void Main(string[] args) {
            var n = Read(Convert.ToInt32);
            var dp = new bool[n + 1];
            var primeList = new List<int>();

            var p = n;
            if(p > 1) {
                var numList = Enumerable.Range(2, p - 1).ToList();
                var sqrt = (int)Math.Sqrt(p);
                while(numList[0] <= sqrt) {
                    var prime = numList[0];
                    primeList.Add(prime);
                    numList.RemoveAll(value => value % prime == 0);
                }
                primeList.AddRange(numList);
            }

            for(var i = 4; i <= n; i++){
                foreach(var prime in primeList){
                    if(prime <= i - 2){
                        if(!dp[i - prime]){
                            dp[i] = true;
                            break;
                        }
                    }
                }
            }

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

        public static TOutput Read<TOutput>(Converter<string, TOutput> converter) {
            return converter(Console.ReadLine());
        }

        public static List<TOutput> ReadList<TOutput>(Converter<string, TOutput> converter, char c = ' ') {
            return Console.ReadLine()?.Split(c).ToList().ConvertAll(converter);
        }
    }
}
0