結果

問題 No.201 yukicoderじゃんけん
ユーザー jimanojimano
提出日時 2018-02-06 13:11:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 668 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 75,144 KB
実行使用メモリ 52,200 KB
最終ジャッジ日時 2024-07-18 00:58:21
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,080 KB
testcase_01 AC 48 ms
50,092 KB
testcase_02 AC 49 ms
50,404 KB
testcase_03 AC 53 ms
50,364 KB
testcase_04 AC 49 ms
50,032 KB
testcase_05 AC 50 ms
50,384 KB
testcase_06 AC 48 ms
49,920 KB
testcase_07 AC 49 ms
50,284 KB
testcase_08 AC 49 ms
50,452 KB
testcase_09 AC 49 ms
50,364 KB
testcase_10 AC 49 ms
50,340 KB
testcase_11 AC 51 ms
50,360 KB
testcase_12 AC 52 ms
50,300 KB
testcase_13 AC 56 ms
50,016 KB
testcase_14 AC 53 ms
50,428 KB
testcase_15 AC 104 ms
51,796 KB
testcase_16 AC 102 ms
52,200 KB
testcase_17 AC 89 ms
51,868 KB
testcase_18 AC 79 ms
51,764 KB
testcase_19 AC 89 ms
52,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1_5;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class No0201 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] inputA = br.readLine().split(" ");
		String[] inputB = br.readLine().split(" ");
		BigInteger a = new BigInteger(inputA[1]);
		BigInteger b = new BigInteger(inputB[1]);

		if (a.compareTo(b) > 0) {
			System.out.println(inputA[0]);
		} else if (a.compareTo(b) < 0) {
			System.out.println(inputB[0]);
		} else {
			System.out.println(-1);
		}
	}
}
0