結果

問題 No.201 yukicoderじゃんけん
ユーザー GrenacheGrenache
提出日時 2015-11-03 12:26:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 3,403 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 55,964 KB
最終ジャッジ日時 2024-09-13 12:04:48
合計ジャッジ時間 7,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,012 KB
testcase_01 AC 125 ms
41,480 KB
testcase_02 AC 122 ms
41,068 KB
testcase_03 AC 131 ms
41,376 KB
testcase_04 WA -
testcase_05 AC 127 ms
41,304 KB
testcase_06 AC 123 ms
41,052 KB
testcase_07 AC 123 ms
41,292 KB
testcase_08 AC 128 ms
41,344 KB
testcase_09 AC 127 ms
41,180 KB
testcase_10 AC 126 ms
41,188 KB
testcase_11 AC 128 ms
41,260 KB
testcase_12 AC 130 ms
41,208 KB
testcase_13 AC 127 ms
41,240 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 163 ms
41,676 KB
testcase_17 AC 160 ms
41,424 KB
testcase_18 AC 163 ms
41,244 KB
testcase_19 AC 161 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder201 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String[] s = new String[2];
        String[] p = new String[2];
        String[] x = new String[2];
        for (int i = 0; i < 2; i++) {
        	s[i] = sc.next();
        	p[i] = sc.next();
        	x[i] = sc.next();
        }

        int res = p[0].compareTo(p[1]);
        if (res > 0) {
        	System.out.println(s[0]);
        } else if (res < 0) {
        	System.out.println(s[1]);
        } else {
        	System.out.println("-1");
        }
        
        sc.close();
    }
}
0