結果

問題 No.692 square1001 and Permutation 1
ユーザー CroweaCrowea
提出日時 2019-01-21 01:09:57
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 750 bytes
コンパイル時間 1,172 ms
コンパイル使用メモリ 65,252 KB
実行使用メモリ 22,804 KB
最終ジャッジ日時 2023-10-12 08:22:05
合計ジャッジ時間 7,296 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
22,668 KB
testcase_01 AC 55 ms
20,772 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 AC 53 ms
20,680 KB
testcase_06 TLE -
testcase_07 AC 56 ms
20,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

class Program
{
    /// <summary>
    /// 選手クラス
    /// </summary>
    static class Players
    {
        public static string Petr = "Petr";
        public static string square1001 = "square1001";
    }

    static void Main(string[] args)
    {
        // 入力
        var permutation = int.Parse(Console.ReadLine());

        string currentPlayer = string.Empty;
        int takeCounter = 0;
        while (permutation != 0)
        {
            takeCounter++;
            currentPlayer = takeCounter % 2 != 0 ? Players.Petr : Players.square1001;
            permutation--;
        }

        var winner = (Players.Petr == currentPlayer) ? Players.square1001 : Players.Petr;
        Console.WriteLine(winner);
    }
}

0