結果

問題 No.201 yukicoderじゃんけん
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-22 09:52:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 42,396 KB
最終ジャッジ日時 2024-10-02 10:02:44
合計ジャッジ時間 5,647 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,616 KB
testcase_01 AC 123 ms
41,252 KB
testcase_02 AC 121 ms
40,868 KB
testcase_03 AC 135 ms
41,624 KB
testcase_04 AC 123 ms
41,108 KB
testcase_05 AC 108 ms
41,128 KB
testcase_06 AC 111 ms
41,108 KB
testcase_07 AC 125 ms
41,276 KB
testcase_08 AC 128 ms
41,096 KB
testcase_09 AC 129 ms
41,292 KB
testcase_10 AC 128 ms
40,988 KB
testcase_11 AC 114 ms
41,540 KB
testcase_12 AC 129 ms
41,028 KB
testcase_13 AC 130 ms
41,064 KB
testcase_14 AC 128 ms
41,092 KB
testcase_15 AC 203 ms
42,396 KB
testcase_16 AC 201 ms
41,676 KB
testcase_17 AC 193 ms
41,596 KB
testcase_18 AC 208 ms
41,860 KB
testcase_19 AC 205 ms
41,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigInteger;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String sa = sc.next();
    String pa = sc.next();
    String xa = sc.next();
    String sb = sc.next();
    String pb = sc.next();
    String xb = sc.next();
    BigInteger num1 = new BigInteger(pa);
    BigInteger num2 = new BigInteger(pb);
    String ans = "-1";
    if(num1.compareTo(num2) > 0) ans = sa;
    if(num1.compareTo(num2) < 0) ans = sb;
    System.out.println(ans);
  }
}
0