結果

問題 No.201 yukicoderじゃんけん
ユーザー nCk_cvnCk_cv
提出日時 2015-08-03 02:30:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 48,020 KB
最終ジャッジ日時 2024-07-18 00:55:34
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,168 KB
testcase_01 AC 128 ms
40,996 KB
testcase_02 AC 123 ms
40,704 KB
testcase_03 AC 133 ms
41,300 KB
testcase_04 AC 131 ms
40,924 KB
testcase_05 AC 131 ms
40,960 KB
testcase_06 AC 127 ms
41,012 KB
testcase_07 AC 128 ms
40,916 KB
testcase_08 AC 118 ms
46,792 KB
testcase_09 AC 133 ms
48,020 KB
testcase_10 AC 130 ms
47,468 KB
testcase_11 AC 133 ms
41,024 KB
testcase_12 AC 130 ms
40,840 KB
testcase_13 AC 131 ms
41,052 KB
testcase_14 AC 126 ms
40,776 KB
testcase_15 AC 182 ms
41,676 KB
testcase_16 AC 180 ms
41,264 KB
testcase_17 AC 185 ms
41,332 KB
testcase_18 AC 178 ms
41,000 KB
testcase_19 AC 187 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.*;
class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String A = sc.next();
		BigInteger a = new BigInteger(sc.next());
		String X = sc.next();
		String B = sc.next();
		BigInteger b = new BigInteger(sc.next());
		X = sc.next();
		
		if(a.compareTo(b) == 1) {
			System.out.println(A);
		}
		else if(a.compareTo(b) == -1) {
			System.out.println(B);
		}
		else {
			System.out.println(-1);
		}
		
		
		
		
		
		
	}
}
0