結果

問題 No.264 じゃんけん
ユーザー ototonariototonari
提出日時 2017-03-16 01:55:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 1,015 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 103,604 KB
実行使用メモリ 22,876 KB
最終ジャッジ日時 2023-09-17 03:44:44
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
18,664 KB
testcase_01 AC 53 ms
20,784 KB
testcase_02 AC 53 ms
22,844 KB
testcase_03 AC 51 ms
20,800 KB
testcase_04 AC 47 ms
20,760 KB
testcase_05 AC 48 ms
20,788 KB
testcase_06 AC 48 ms
20,716 KB
testcase_07 AC 50 ms
22,876 KB
testcase_08 AC 49 ms
20,748 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;
using System.Text;
using System.Threading.Tasks;

namespace test
{
    class Program
    {
        static void Main(string[] args)
        {
            //勝敗判定
            string[] judge = new string[3];

            judge[0] = "Drew";
            judge[1] = "Won";
            judge[2] = "Lost";

            string s = Console.ReadLine();
            string[] t = s.Split(' ');
            int a = int.Parse(t[0]);
            int b = int.Parse(t[1]);

            janken(ref judge, a);

            string c = judge[b];

            Console.WriteLine("{0}", c);
            

        }

        static void janken(ref string[] text,int key)
        {
            while(key > 0)
            {
                string tmp = text[2];
                text[2] = text[1];
                text[1] = text[0];
                text[0] = tmp;
                key--;
            }
        }

    }
}
0