結果

問題 No.201 yukicoderじゃんけん
ユーザー bluemeganebluemegane
提出日時 2018-09-19 10:27:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 110,156 KB
実行使用メモリ 25,996 KB
最終ジャッジ日時 2024-07-18 08:13:33
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,648 KB
testcase_01 AC 21 ms
23,340 KB
testcase_02 AC 21 ms
23,780 KB
testcase_03 AC 22 ms
23,600 KB
testcase_04 AC 22 ms
25,480 KB
testcase_05 AC 22 ms
23,816 KB
testcase_06 AC 22 ms
25,608 KB
testcase_07 AC 22 ms
23,812 KB
testcase_08 AC 21 ms
25,868 KB
testcase_09 AC 22 ms
23,648 KB
testcase_10 AC 21 ms
23,516 KB
testcase_11 AC 21 ms
25,996 KB
testcase_12 AC 23 ms
23,904 KB
testcase_13 AC 22 ms
25,820 KB
testcase_14 AC 21 ms
23,388 KB
testcase_15 AC 22 ms
23,672 KB
testcase_16 AC 21 ms
23,816 KB
testcase_17 AC 21 ms
25,480 KB
testcase_18 AC 21 ms
23,860 KB
testcase_19 AC 22 ms
23,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var sa = line[0];
        var pa = line[1];
        line = Console.ReadLine().Trim().Split(' ');
        var sb = line[0];
        var pb = line[1];
        if (pa == pb) Console.WriteLine(-1);
        else Console.WriteLine(compAB(pa, pb) ? sa : sb);
    }
    public static bool compAB(string a, string b)
    {
        var aL = a.Length;
        var bL = b.Length;
        if (aL > bL) return true;
        else if (aL < bL) return false;
        var p = 0;
        while (true)
        {
            if (a[p] > b[p]) return true;
            else if (a[p] < b[p]) return false;
            p++;
        }
    }
}
0