結果

問題 No.201 yukicoderじゃんけん
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-10-04 23:33:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 677 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-12 12:23:51
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,056 KB
testcase_01 AC 131 ms
53,688 KB
testcase_02 AC 131 ms
53,936 KB
testcase_03 AC 136 ms
53,872 KB
testcase_04 AC 132 ms
54,008 KB
testcase_05 AC 132 ms
53,928 KB
testcase_06 AC 131 ms
54,132 KB
testcase_07 AC 129 ms
54,172 KB
testcase_08 AC 133 ms
54,072 KB
testcase_09 AC 136 ms
53,912 KB
testcase_10 AC 132 ms
53,836 KB
testcase_11 AC 136 ms
54,080 KB
testcase_12 AC 132 ms
53,996 KB
testcase_13 AC 135 ms
54,280 KB
testcase_14 AC 132 ms
53,872 KB
testcase_15 AC 168 ms
54,300 KB
testcase_16 AC 169 ms
54,284 KB
testcase_17 AC 172 ms
54,180 KB
testcase_18 AC 177 ms
54,092 KB
testcase_19 AC 170 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String sa, sb, pa, pb, xa, xb;
        sa = in.next();
        pa = in.next();
        xa = in.next();
        sb = in.next();
        pb = in.next();
        xb = in.next();

        if(pa.length() > pb.length()) {
            System.out.println(sa);
        } else if(pb.length() > pa.length()) {
            System.out.println(sb);
        } else {
            int t = pa.compareTo(pb);
            if(t > 0) System.out.println(sa);
            else if(t < 0) System.out.println(sb);
            else System.out.println(-1);
        }
    }
}
0