結果

問題 No.8 N言っちゃダメゲーム
ユーザー mbanmban
提出日時 2016-11-01 05:16:52
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,100 bytes
コンパイル時間 1,141 ms
コンパイル使用メモリ 112,752 KB
実行使用メモリ 46,404 KB
最終ジャッジ日時 2024-11-25 00:38:29
合計ジャッジ時間 46,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
30,728 KB
testcase_01 AC 25 ms
32,820 KB
testcase_02 AC 24 ms
46,404 KB
testcase_03 TLE -
testcase_04 AC 1,853 ms
42,492 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 System.Text;
using System.Threading.Tasks;

class Magatro
{
    static int P;
    static int[] N, K;
   static void Main()
    {
        Read();
        for(int i = 0; i < P; i++)
        {
            Console.WriteLine(Ans(N[i], K[i]));
        }
    }
    static string Ans(int n,int k)
    {
        bool[] A = new bool[n+1];
        A[n] = true;
        for(int i = n; i >= 0; i--)
        {

            for(int j = 1; j <= k; j++) {
                if (i - j < 0)
                {
                    break;
                }
                A[i - j] ^= !A[i];
            }
        }
        if (A[0])
        {
            return "Win";
        }
        else
        {
            return "Lose";

        }
    }
    static void Read()
    {
        P = int.Parse(Console.ReadLine());
        N = new int[P];
        K = new int[P];
        for (int i = 0; i<P; i++){
            string[] s = Console.ReadLine().Split(' ');

            N[i] = int.Parse(s[0]);
            K[i] = int.Parse(s[1]);
        }
    }
}


0