結果

問題 No.201 yukicoderじゃんけん
ユーザー rf141rf141
提出日時 2015-06-19 04:38:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 3,256 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 56,304 KB
最終ジャッジ日時 2024-07-07 03:51:23
合計ジャッジ時間 6,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,812 KB
testcase_01 AC 97 ms
52,600 KB
testcase_02 AC 115 ms
53,792 KB
testcase_03 AC 107 ms
52,824 KB
testcase_04 AC 102 ms
53,016 KB
testcase_05 AC 99 ms
52,884 KB
testcase_06 AC 112 ms
53,912 KB
testcase_07 AC 105 ms
53,996 KB
testcase_08 AC 102 ms
52,940 KB
testcase_09 AC 105 ms
53,948 KB
testcase_10 AC 97 ms
52,256 KB
testcase_11 AC 113 ms
54,092 KB
testcase_12 AC 116 ms
56,304 KB
testcase_13 AC 102 ms
52,984 KB
testcase_14 AC 99 ms
53,084 KB
testcase_15 AC 157 ms
54,176 KB
testcase_16 AC 152 ms
54,176 KB
testcase_17 AC 163 ms
54,044 KB
testcase_18 AC 162 ms
54,260 KB
testcase_19 AC 158 ms
54,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Janken{
 public static void main(String[] args){
  Scanner scan = new Scanner(System.in);
  String s1 = scan.next();
  BigInteger p1 = new BigInteger(scan.next());
  String x1 = scan.next();

  String s2 = scan.next();
  BigInteger p2 = new BigInteger(scan.next());
  String x2 = scan.next();
  int d = -1;
  System.out.println((p1.compareTo(p2) > 0)?s1:(p1.compareTo(p2) == 0)?d:s2);
 }
}
0