結果

問題 No.201 yukicoderじゃんけん
ユーザー 37zigen37zigen
提出日時 2016-03-10 00:54:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-09-24 17:17:26
合計ジャッジ時間 6,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,240 KB
testcase_01 AC 140 ms
54,164 KB
testcase_02 AC 136 ms
54,016 KB
testcase_03 AC 143 ms
53,984 KB
testcase_04 AC 139 ms
53,852 KB
testcase_05 AC 136 ms
53,960 KB
testcase_06 AC 137 ms
54,068 KB
testcase_07 AC 134 ms
54,132 KB
testcase_08 AC 142 ms
54,096 KB
testcase_09 AC 143 ms
54,088 KB
testcase_10 AC 136 ms
54,496 KB
testcase_11 AC 143 ms
54,324 KB
testcase_12 AC 138 ms
54,024 KB
testcase_13 AC 140 ms
54,096 KB
testcase_14 AC 139 ms
54,232 KB
testcase_15 AC 207 ms
54,284 KB
testcase_16 AC 210 ms
54,424 KB
testcase_17 AC 211 ms
54,532 KB
testcase_18 AC 214 ms
54,316 KB
testcase_19 AC 217 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String SA=sc.next();
		String AP=sc.next();
		String A=sc.next();
		String SB=sc.next();
		String BP=sc.next();
		String B=sc.next();
		
		BigInteger ap=new BigInteger(AP);
		BigInteger bp=new BigInteger(BP);
		if(ap.compareTo(bp)>0){
			System.out.println(SA);
		}else if(ap.compareTo(bp)<0){
			System.out.println(SB);
		}else{
			System.out.println(-1);
		}
	}
}
0