結果

問題 No.201 yukicoderじゃんけん
ユーザー haruki_57haruki_57
提出日時 2015-05-04 01:01:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 75,404 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-07-05 18:41:11
合計ジャッジ時間 5,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,368 KB
testcase_01 AC 122 ms
40,984 KB
testcase_02 AC 122 ms
41,128 KB
testcase_03 AC 131 ms
40,976 KB
testcase_04 AC 129 ms
40,912 KB
testcase_05 AC 126 ms
41,020 KB
testcase_06 AC 127 ms
40,984 KB
testcase_07 AC 123 ms
41,208 KB
testcase_08 AC 130 ms
41,060 KB
testcase_09 AC 130 ms
41,092 KB
testcase_10 AC 126 ms
41,044 KB
testcase_11 AC 133 ms
40,944 KB
testcase_12 AC 128 ms
40,684 KB
testcase_13 AC 124 ms
41,144 KB
testcase_14 AC 119 ms
40,648 KB
testcase_15 AC 184 ms
41,440 KB
testcase_16 AC 174 ms
41,468 KB
testcase_17 AC 179 ms
41,644 KB
testcase_18 AC 181 ms
41,540 KB
testcase_19 AC 182 ms
41,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;


public class Main {

    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        String s = sc.next();
        BigInteger b = new BigInteger(sc.next());
        sc.next();
        String t = sc.next();
        BigInteger c = new BigInteger(sc.next());
        sc.next();
        if(b.compareTo(c)>0){
            System.out.println(s);
        } else if(b.compareTo(c)==0){
            System.out.println(-1);
        } else {
            System.out.println(t);
        }
    }

}
0