結果

問題 No.201 yukicoderじゃんけん
ユーザー ffmm00ffmm00
提出日時 2015-06-02 12:15:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 2,841 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 41,840 KB
最終ジャッジ日時 2024-07-06 13:35:18
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,760 KB
testcase_01 AC 104 ms
40,792 KB
testcase_02 AC 89 ms
40,436 KB
testcase_03 AC 101 ms
41,180 KB
testcase_04 AC 105 ms
41,288 KB
testcase_05 AC 101 ms
40,860 KB
testcase_06 AC 99 ms
40,072 KB
testcase_07 AC 98 ms
41,160 KB
testcase_08 AC 101 ms
41,116 KB
testcase_09 AC 103 ms
40,952 KB
testcase_10 AC 104 ms
41,040 KB
testcase_11 AC 104 ms
40,864 KB
testcase_12 AC 103 ms
41,060 KB
testcase_13 AC 103 ms
41,176 KB
testcase_14 AC 87 ms
39,804 KB
testcase_15 AC 157 ms
41,348 KB
testcase_16 AC 139 ms
41,264 KB
testcase_17 AC 161 ms
41,564 KB
testcase_18 AC 182 ms
41,840 KB
testcase_19 AC 159 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class N201 {

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

		String S1 = sca.next();
		BigInteger P1 = new BigInteger(sca.next());
		String X1 = sca.next();

		String S2 = sca.next();
		BigInteger P2 = new BigInteger(sca.next());
		String X2 = sca.next();

		if (P1.compareTo(P2) < 0)
			System.out.println(S2);
		else if (P1.compareTo(P2) > 0)
			System.out.println(S1);
		else
			System.out.println(-1);

	}

}
0