結果

問題 No.201 yukicoderじゃんけん
ユーザー thorikawathorikawa
提出日時 2015-05-03 23:24:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-05 16:08:34
合計ジャッジ時間 5,492 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,332 KB
testcase_01 AC 103 ms
40,172 KB
testcase_02 AC 104 ms
40,192 KB
testcase_03 AC 107 ms
39,916 KB
testcase_04 AC 113 ms
40,764 KB
testcase_05 AC 109 ms
41,028 KB
testcase_06 AC 109 ms
40,804 KB
testcase_07 AC 105 ms
40,648 KB
testcase_08 AC 108 ms
40,140 KB
testcase_09 AC 100 ms
39,992 KB
testcase_10 AC 94 ms
39,924 KB
testcase_11 AC 99 ms
39,876 KB
testcase_12 AC 100 ms
40,072 KB
testcase_13 AC 108 ms
40,812 KB
testcase_14 AC 106 ms
41,224 KB
testcase_15 AC 159 ms
41,320 KB
testcase_16 AC 166 ms
41,268 KB
testcase_17 AC 152 ms
41,568 KB
testcase_18 AC 161 ms
41,284 KB
testcase_19 AC 149 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        String name1, name2;
        BigInteger p1, p2;
        name1 = scanner.next();
        p1 = new BigInteger(scanner.next());
        scanner.next();
        name2 = scanner.next();
        p2 = new BigInteger(scanner.next());
        scanner.next();
        int res = p1.compareTo(p2);
        if (res > 0) {
            System.out.println(name1);
        } else if (res < 0) {
            System.out.println(name2);
        } else {
            System.out.println(-1);
        }
    }
}
0