結果

問題 No.201 yukicoderじゃんけん
ユーザー tsunabittsunabit
提出日時 2019-05-22 23:34:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 764 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 75,648 KB
実行使用メモリ 54,620 KB
最終ジャッジ日時 2024-09-17 09:40:15
合計ジャッジ時間 6,323 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,952 KB
testcase_01 AC 109 ms
54,048 KB
testcase_02 AC 121 ms
54,000 KB
testcase_03 AC 123 ms
54,008 KB
testcase_04 WA -
testcase_05 AC 120 ms
53,948 KB
testcase_06 AC 120 ms
53,932 KB
testcase_07 AC 122 ms
54,180 KB
testcase_08 AC 118 ms
54,620 KB
testcase_09 AC 119 ms
53,936 KB
testcase_10 AC 115 ms
54,252 KB
testcase_11 AC 101 ms
53,128 KB
testcase_12 AC 114 ms
54,056 KB
testcase_13 AC 114 ms
53,872 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 142 ms
54,308 KB
testcase_17 AC 136 ms
54,196 KB
testcase_18 AC 135 ms
53,868 KB
testcase_19 AC 143 ms
53,976 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.compareTo(pb) > 0) {
        	System.out.println(sa);
        }else if(pa.compareTo(pb) < 0) {
        	System.out.println(sb);
        }else {
        	System.out.println(-1);
        }
    }
}
0