結果

問題 No.201 yukicoderじゃんけん
ユーザー mencottonmencotton
提出日時 2017-12-29 23:40:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 848 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 110,272 KB
実行使用メモリ 26,092 KB
最終ジャッジ日時 2024-06-01 06:44:37
合計ジャッジ時間 2,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,852 KB
testcase_01 AC 26 ms
25,868 KB
testcase_02 AC 26 ms
25,740 KB
testcase_03 AC 27 ms
25,736 KB
testcase_04 AC 26 ms
23,924 KB
testcase_05 AC 26 ms
25,996 KB
testcase_06 AC 25 ms
23,728 KB
testcase_07 AC 25 ms
23,924 KB
testcase_08 AC 26 ms
23,668 KB
testcase_09 AC 26 ms
23,800 KB
testcase_10 AC 26 ms
23,804 KB
testcase_11 AC 27 ms
23,712 KB
testcase_12 AC 27 ms
25,888 KB
testcase_13 AC 26 ms
22,072 KB
testcase_14 AC 25 ms
23,804 KB
testcase_15 AC 26 ms
23,828 KB
testcase_16 AC 27 ms
26,092 KB
testcase_17 AC 26 ms
23,796 KB
testcase_18 AC 26 ms
23,788 KB
testcase_19 AC 26 ms
23,940 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;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] a = Console.ReadLine().Split();
            string[] b = Console.ReadLine().Split();
            if (a[1] == b[1]) Console.WriteLine(-1);
            else if (a[1].Length != b[1].Length)
            {
                Console.WriteLine(a[1].Length > b[1].Length ? a[0] : b[0]);
            }
            else
            {
                bool flag = true;
                for (int i = 0; flag; i++)
                {
                    if (a[1][i] != b[1][i])
                    {
                        flag = false;
                        Console.WriteLine(a[1][i] > b[1][i] ? a[0] : b[0]);
                    }
                }
            }
        }
    }
}
0