結果

問題 No.201 yukicoderじゃんけん
ユーザー koukonkokoukonko
提出日時 2015-12-15 15:23:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 717 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 73,652 KB
実行使用メモリ 38,984 KB
最終ジャッジ日時 2024-09-15 13:04:16
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,344 KB
testcase_01 AC 51 ms
36,636 KB
testcase_02 AC 50 ms
36,264 KB
testcase_03 AC 55 ms
36,920 KB
testcase_04 AC 54 ms
36,968 KB
testcase_05 AC 52 ms
36,640 KB
testcase_06 AC 53 ms
36,600 KB
testcase_07 AC 51 ms
36,512 KB
testcase_08 AC 54 ms
36,744 KB
testcase_09 AC 55 ms
36,812 KB
testcase_10 AC 53 ms
36,672 KB
testcase_11 AC 54 ms
36,688 KB
testcase_12 AC 54 ms
36,556 KB
testcase_13 AC 54 ms
36,552 KB
testcase_14 AC 51 ms
36,496 KB
testcase_15 AC 109 ms
38,744 KB
testcase_16 AC 104 ms
38,524 KB
testcase_17 AC 106 ms
38,460 KB
testcase_18 AC 106 ms
38,984 KB
testcase_19 AC 111 ms
38,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			String[] firBox = read.readLine().split(" ");
			String[] secBox = read.readLine().split(" ");

			BigInteger first = new BigInteger(firBox[1]);
			BigInteger second = new BigInteger(secBox[1]);

			if (first.equals(second)) {
				System.out.println(-1);
			} else if (first.max(second).equals(first)) {
				System.out.println(firBox[0]);
			} else {
				System.out.println(secBox[0]);
			}

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0