結果

問題 No.201 yukicoderじゃんけん
ユーザー tsunabittsunabit
提出日時 2019-05-22 23:43:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 847 bytes
コンパイル時間 3,833 ms
コンパイル使用メモリ 75,860 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-09-17 09:41:06
合計ジャッジ時間 7,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
52,652 KB
testcase_01 AC 127 ms
53,972 KB
testcase_02 AC 126 ms
53,900 KB
testcase_03 AC 133 ms
53,836 KB
testcase_04 AC 132 ms
53,996 KB
testcase_05 AC 131 ms
54,016 KB
testcase_06 AC 131 ms
53,880 KB
testcase_07 AC 126 ms
54,116 KB
testcase_08 AC 133 ms
53,964 KB
testcase_09 AC 134 ms
54,096 KB
testcase_10 AC 132 ms
54,212 KB
testcase_11 AC 133 ms
54,164 KB
testcase_12 AC 133 ms
53,924 KB
testcase_13 AC 133 ms
53,912 KB
testcase_14 AC 130 ms
54,020 KB
testcase_15 AC 164 ms
53,912 KB
testcase_16 AC 164 ms
53,852 KB
testcase_17 AC 159 ms
54,072 KB
testcase_18 AC 161 ms
54,000 KB
testcase_19 AC 160 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;

public class No201 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
//        𝑆𝐴 𝑃𝐴 𝑋𝐴
//        𝑆𝐵 𝑃𝐵 𝑋𝐵
        String sa = s.next();
        String pa = s.next();
        String xa = s.next();
        
        String sb = s.next();
        String pb = s.next();
        String xb = s.next();
        
        if(pa.length() == pb.length()) {
        	if(pa.equals(pb)) {
        		System.out.println(-1);
        	}else {
        		System.out.println(pa.compareTo(pb) > 0? sa : sb);
        	}
        }else {
        	System.out.println(pa.length() > pb.length()? sa : sb);
        }
    }
}
0