結果

問題 No.201 yukicoderじゃんけん
ユーザー qwrtpsfgqwrtpsfg
提出日時 2017-08-22 23:35:08
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 950 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 114,416 KB
実行使用メモリ 25,812 KB
最終ジャッジ日時 2024-10-15 04:27:41
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,664 KB
testcase_01 AC 24 ms
17,920 KB
testcase_02 RE -
testcase_03 AC 23 ms
17,664 KB
testcase_04 AC 24 ms
17,408 KB
testcase_05 AC 23 ms
17,920 KB
testcase_06 AC 23 ms
17,664 KB
testcase_07 AC 24 ms
18,048 KB
testcase_08 AC 25 ms
18,048 KB
testcase_09 AC 26 ms
17,920 KB
testcase_10 AC 24 ms
17,408 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 25 ms
18,048 KB
testcase_14 AC 23 ms
17,408 KB
testcase_15 AC 24 ms
17,888 KB
testcase_16 AC 24 ms
17,792 KB
testcase_17 AC 24 ms
17,920 KB
testcase_18 RE -
testcase_19 AC 29 ms
18,676 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 void Main()
    {
        string[] a = Console.ReadLine().Split(' ');
        string[] b = Console.ReadLine().Split(' ');
        
        if(a[1].Length == b[1].Length)
        {
            for(int i = 0; i <= a[1].Length; i++)
            {
                if(int.Parse(a[1].Substring(i, 1)) > int.Parse(b[1].Substring(i, 1)))
                {
                    Console.WriteLine(a[0]);
                    break;
                }
                else if(int.Parse(a[1].Substring(i, 1)) < int.Parse(b[1].Substring(i, 1)))
                {
                    Console.WriteLine(b[0]);
                    break;
                }
            }
        }
        else if(a[1].Length > b[1].Length)
        {
            Console.WriteLine(a[0]);
        }
        else
        {
            Console.WriteLine(b[0]);
        }
    }
}
0