結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | PoronPa |
提出日時 | 2019-05-27 21:01:52 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,163 bytes |
コンパイル時間 | 948 ms |
コンパイル使用メモリ | 113,160 KB |
実行使用メモリ | 56,812 KB |
最終ジャッジ日時 | 2024-09-17 15:34:21 |
合計ジャッジ時間 | 4,989 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; namespace Program { class Program { static void Main() { int count = int.Parse(Console.ReadLine()); Program2 program2=new Program2(); program2.Calc(); Console.WriteLine(Convert.ToString(program2.GetWin(count))); Console.ReadLine(); } } class Program2 { private int[] _win=new int[10001]; private Sosuu sosuu = new Sosuu(); public bool GetWin(int inNumber) { return _win[inNumber]==1; } public void Calc() { _win = _win.Select(x => -1).ToArray(); _win[0] = 0; _win[1] = 0; for (int number = 2; number <= 10000; number++) { _win[number] = Convert.ToInt32(GetWinCalc(number)); } } private bool GetWinCalc(int inNumber) { if (_win[inNumber] != -1) return _win[inNumber] == 1; List<int> card = sosuu.sosuuList.Where(x => x < inNumber && inNumber - x > 1).ToList(); if (card.Count == 0) return false; foreach (int item in card) { int Aite_No = inNumber - item; if (!GetWinCalc(Aite_No)) return true; } return false; } } class Sosuu { public List<int> sosuuList = new List<int>(); public Sosuu() { sosuuList.Add(2); for (int number = 3;number <= 10000;number++) { if (number % 2 == 0) { continue; } for (int waruNumbre = 3; waruNumbre < number; waruNumbre++) { if (number % waruNumbre == 0) { break; } if(waruNumbre==number-1) sosuuList.Add(number); } } } } }