結果

問題 No.201 yukicoderじゃんけん
ユーザー tsunabittsunabit
提出日時 2019-05-22 23:41:12
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 75,264 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-09-17 09:40:52
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,844 KB
testcase_01 AC 130 ms
53,864 KB
testcase_02 WA -
testcase_03 AC 131 ms
53,888 KB
testcase_04 AC 131 ms
53,688 KB
testcase_05 AC 132 ms
54,044 KB
testcase_06 AC 134 ms
53,996 KB
testcase_07 AC 129 ms
54,096 KB
testcase_08 AC 134 ms
54,116 KB
testcase_09 AC 133 ms
54,140 KB
testcase_10 AC 131 ms
53,860 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 133 ms
53,968 KB
testcase_14 AC 130 ms
54,068 KB
testcase_15 AC 166 ms
54,296 KB
testcase_16 AC 163 ms
54,208 KB
testcase_17 AC 166 ms
54,188 KB
testcase_18 WA -
testcase_19 AC 164 ms
54,008 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()) {
        	System.out.println(pa.compareTo(pb) > 0? sa : sb);
        }else {
        	System.out.println(pa.length() > pb.length()? sa : sb);
        }
    }
}
0