結果

問題 No.201 yukicoderじゃんけん
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-06 13:29:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 78,340 KB
実行使用メモリ 42,388 KB
最終ジャッジ日時 2024-06-11 15:27:08
合計ジャッジ時間 7,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,260 KB
testcase_01 AC 96 ms
39,988 KB
testcase_02 AC 104 ms
41,160 KB
testcase_03 AC 133 ms
41,664 KB
testcase_04 AC 130 ms
41,920 KB
testcase_05 AC 133 ms
41,652 KB
testcase_06 AC 129 ms
41,800 KB
testcase_07 AC 126 ms
41,508 KB
testcase_08 AC 132 ms
41,636 KB
testcase_09 AC 132 ms
41,200 KB
testcase_10 AC 108 ms
41,172 KB
testcase_11 AC 110 ms
41,296 KB
testcase_12 AC 108 ms
41,284 KB
testcase_13 AC 108 ms
41,092 KB
testcase_14 AC 99 ms
40,088 KB
testcase_15 AC 167 ms
41,792 KB
testcase_16 AC 173 ms
41,796 KB
testcase_17 AC 153 ms
41,688 KB
testcase_18 AC 189 ms
42,388 KB
testcase_19 AC 167 ms
41,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

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

		String name = scan.next();
		String point = scan.next();
		String R = scan.next();
		String name2 = scan.next();
		String point2 = scan.next();
		String R2 = scan.next();
		scan.close();
		
		BigInteger bigint =  new BigInteger(point);
		BigInteger bigint2 =  new BigInteger(point2);
		int ans = bigint.compareTo(bigint2); 
		
		if(ans == 1){
			System.out.println(name);
		}else if( ans == -1){
			System.out.println(name2);
		}else {
			System.out.println(-1);
		}		
	}

}
0