結果

問題 No.201 yukicoderじゃんけん
ユーザー taktak
提出日時 2018-06-14 00:37:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 113,604 KB
実行使用メモリ 25,996 KB
最終ジャッジ日時 2024-06-30 14:16:26
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
21,424 KB
testcase_01 AC 25 ms
23,924 KB
testcase_02 AC 25 ms
25,612 KB
testcase_03 AC 25 ms
25,616 KB
testcase_04 AC 26 ms
23,816 KB
testcase_05 AC 25 ms
25,580 KB
testcase_06 AC 25 ms
23,532 KB
testcase_07 AC 25 ms
23,468 KB
testcase_08 AC 25 ms
25,996 KB
testcase_09 AC 25 ms
23,580 KB
testcase_10 AC 25 ms
25,960 KB
testcase_11 AC 25 ms
23,832 KB
testcase_12 AC 25 ms
23,568 KB
testcase_13 AC 25 ms
23,528 KB
testcase_14 AC 25 ms
23,536 KB
testcase_15 AC 26 ms
25,828 KB
testcase_16 AC 25 ms
23,916 KB
testcase_17 AC 26 ms
24,032 KB
testcase_18 AC 25 ms
25,848 KB
testcase_19 AC 26 ms
23,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Console;
class Simple {
    public static void Main(string[] args) { new Simple().Solve(); }
    string Sa, Pa, Xa;
    string Sb, Pb, Xb;
    int isAwin(string pa, string pb) {
        if (pa.Length != pb.Length) return pa.Length > pb.Length ? 1 : -1;
        for (var i = 0; i < pa.Length; ++i)
            if (pa[i] != pb[i]) return pa[i] > pb[i] ? 1 : -1;
        return 0;
    }
    void Solve() {
        var line1 = ReadLine().Split();
        var line2 = ReadLine().Split();
        Sa = line1[0];
        Pa = line1[1];
        Xa = line1[2];
        Sb = line2[0];
        Pb = line2[1];
        Xb = line2[2];
        var tmp = isAwin(Pa, Pb);
        var ans = tmp == 1 ? Sa : tmp == -1 ? Sb : "-1";
        WriteLine(ans);
    }
}
0