結果

問題 No.264 じゃんけん
ユーザー ototonariototonari
提出日時 2017-03-16 01:55:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 1,015 bytes
コンパイル時間 2,991 ms
コンパイル使用メモリ 109,248 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-07-04 01:26:46
合計ジャッジ時間 3,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,792 KB
testcase_01 AC 21 ms
17,792 KB
testcase_02 AC 21 ms
17,792 KB
testcase_03 AC 21 ms
17,792 KB
testcase_04 AC 22 ms
17,792 KB
testcase_05 AC 20 ms
17,792 KB
testcase_06 AC 21 ms
17,920 KB
testcase_07 AC 21 ms
17,792 KB
testcase_08 AC 21 ms
17,920 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