結果

問題 No.201 yukicoderじゃんけん
ユーザー qwrtpsfgqwrtpsfg
提出日時 2017-08-22 22:58:14
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,008 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 113,772 KB
実行使用メモリ 26,600 KB
最終ジャッジ日時 2024-10-15 04:27:31
合計ジャッジ時間 2,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
18,560 KB
testcase_01 AC 27 ms
18,432 KB
testcase_02 AC 28 ms
18,688 KB
testcase_03 AC 28 ms
18,432 KB
testcase_04 WA -
testcase_05 AC 27 ms
18,432 KB
testcase_06 AC 29 ms
18,688 KB
testcase_07 AC 27 ms
18,432 KB
testcase_08 AC 28 ms
18,432 KB
testcase_09 AC 29 ms
18,560 KB
testcase_10 AC 27 ms
18,560 KB
testcase_11 AC 28 ms
18,688 KB
testcase_12 AC 28 ms
18,688 KB
testcase_13 AC 28 ms
18,432 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 29 ms
18,288 KB
testcase_17 AC 29 ms
18,676 KB
testcase_18 AC 28 ms
18,408 KB
testcase_19 AC 29 ms
18,540 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.Linq;
using System.Collections.Generic;

public class yukicoder
{

	public static int convert(string s)
	{
		if(s == "r") return 0;
		else if(s == "s") return 1;
		else return 2;
	}

    public static void Main()
    {
        string[] a = Console.ReadLine().Split(' ');
        string[] b = Console.ReadLine().Split(' ');
        
        int compareAtoB = a[1].CompareTo(b[1]);
        
        int aaa = convert(a[2]);
        int bbb = convert(b[2]);
        
        if(compareAtoB != 0)
        {
        	if(compareAtoB == 1)
        	{
		        Console.WriteLine(a[0]);
        	}
        	else
        	{
        		Console.WriteLine(b[0]);
        	}
        }
        else
        {
        	if(aaa == bbb)
        	{
        		Console.WriteLine("-1");
        	}
        	else if(aaa - bbb == -1 || aaa - bbb == 2)
        	{
        		Console.WriteLine(a[0]);
        	}
        	else
        	{
        		Console.WriteLine(b[0]);
        	}
        }
        
    }
}
0