結果

問題 No.201 yukicoderじゃんけん
ユーザー 練習生練習生
提出日時 2015-08-18 13:22:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 3,051 ms
コンパイル使用メモリ 75,032 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-07-18 10:09:46
合計ジャッジ時間 6,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,804 KB
testcase_01 AC 109 ms
52,968 KB
testcase_02 AC 119 ms
54,172 KB
testcase_03 AC 124 ms
53,888 KB
testcase_04 AC 123 ms
54,108 KB
testcase_05 AC 115 ms
53,848 KB
testcase_06 AC 107 ms
53,044 KB
testcase_07 AC 103 ms
52,732 KB
testcase_08 AC 122 ms
54,076 KB
testcase_09 AC 127 ms
53,924 KB
testcase_10 AC 124 ms
53,936 KB
testcase_11 AC 111 ms
52,740 KB
testcase_12 AC 124 ms
54,084 KB
testcase_13 AC 123 ms
54,092 KB
testcase_14 AC 107 ms
52,992 KB
testcase_15 AC 169 ms
54,388 KB
testcase_16 AC 167 ms
54,184 KB
testcase_17 AC 171 ms
54,180 KB
testcase_18 AC 174 ms
54,436 KB
testcase_19 AC 169 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;
public class No201 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		// 一人目を入力
		String name1 = sc.next();
		BigInteger p1 = new BigInteger(sc.next());
		String x1 = sc.next();
		// 二人目を入力
		String name2 = sc.next();
		BigInteger p2 = new BigInteger(sc.next());
		String x2 = sc.next();
		// 判定
		if(p1.compareTo(p2) == 1){
			System.out.println(name1);
		}else if(p1.compareTo(p2) == -1){
			System.out.println(name2);
		}else{
			System.out.println("-1");
		}
	}
}
0