結果

問題 No.201 yukicoderじゃんけん
ユーザー dazydazy
提出日時 2017-02-23 16:06:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 978 bytes
コンパイル時間 4,365 ms
コンパイル使用メモリ 75,524 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-10 20:54:12
合計ジャッジ時間 6,870 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,208 KB
testcase_01 AC 107 ms
54,288 KB
testcase_02 AC 104 ms
52,880 KB
testcase_03 AC 111 ms
53,984 KB
testcase_04 AC 122 ms
54,204 KB
testcase_05 AC 102 ms
52,864 KB
testcase_06 AC 113 ms
53,776 KB
testcase_07 AC 98 ms
52,936 KB
testcase_08 AC 119 ms
54,232 KB
testcase_09 AC 103 ms
52,684 KB
testcase_10 AC 112 ms
54,064 KB
testcase_11 AC 104 ms
52,912 KB
testcase_12 AC 102 ms
52,696 KB
testcase_13 AC 116 ms
54,012 KB
testcase_14 AC 103 ms
52,884 KB
testcase_15 AC 133 ms
54,016 KB
testcase_16 AC 126 ms
54,032 KB
testcase_17 AC 137 ms
54,092 KB
testcase_18 AC 124 ms
54,380 KB
testcase_19 AC 143 ms
54,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String ans = "-1";

        String A = scan.next();
        String a = scan.next();
        String trash = scan.next();

        String B = scan.next();
        String b = scan.next();
        trash = scan.next();

        if (a.length() > b.length()) ans = A;
        else if (b.length() > a.length()) ans = B;
        else if (a.equals(b)) {
        } else {
            int X, Y;
            for (int i = 0; i < a.length(); i++) {
                X = Integer.parseInt(a.substring(i, i+1));
                Y = Integer.parseInt(b.substring(i, i+1));
                if (X > Y) {
                    ans = A;
                    break;
                } else if (Y > X) {
                    ans = B;
                    break;
                } else {
                }
            }
        }

        System.out.println(ans);
    }
}
0