結果

問題 No.201 yukicoderじゃんけん
ユーザー rf141rf141
提出日時 2015-06-19 04:37:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 54,832 KB
最終ジャッジ日時 2024-07-07 03:51:16
合計ジャッジ時間 5,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,108 KB
testcase_01 AC 105 ms
53,852 KB
testcase_02 WA -
testcase_03 AC 99 ms
52,880 KB
testcase_04 AC 111 ms
53,968 KB
testcase_05 WA -
testcase_06 AC 105 ms
52,628 KB
testcase_07 WA -
testcase_08 AC 98 ms
52,296 KB
testcase_09 AC 102 ms
52,968 KB
testcase_10 AC 101 ms
53,048 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 165 ms
54,176 KB
testcase_17 AC 182 ms
54,832 KB
testcase_18 WA -
testcase_19 AC 159 ms
53,672 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((s1.compareTo(s2) > 0)?s1:(s1.compareTo(s2) == 0)?d:s2);
 }
}
0