結果

問題 No.201 yukicoderじゃんけん
ユーザー Pump0129Pump0129
提出日時 2018-03-28 00:35:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 1,484 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 43,800 KB
最終ジャッジ日時 2024-06-25 13:01:25
合計ジャッジ時間 6,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,372 KB
testcase_01 AC 108 ms
40,012 KB
testcase_02 AC 121 ms
41,324 KB
testcase_03 AC 122 ms
41,508 KB
testcase_04 AC 112 ms
40,336 KB
testcase_05 AC 127 ms
41,468 KB
testcase_06 AC 129 ms
41,312 KB
testcase_07 AC 122 ms
41,692 KB
testcase_08 AC 130 ms
41,332 KB
testcase_09 AC 129 ms
41,528 KB
testcase_10 AC 127 ms
41,576 KB
testcase_11 AC 127 ms
42,008 KB
testcase_12 AC 112 ms
40,492 KB
testcase_13 AC 128 ms
41,728 KB
testcase_14 AC 123 ms
41,428 KB
testcase_15 AC 165 ms
41,560 KB
testcase_16 AC 161 ms
41,408 KB
testcase_17 AC 157 ms
41,624 KB
testcase_18 AC 179 ms
43,800 KB
testcase_19 AC 169 ms
43,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no201;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);

        String[] data = scan.nextLine().split(" ");
        String p1_name = data[0];
        String p1_point = data[1];

        data = scan.nextLine().split(" ");
        String p2_name = data[0];
        String p2_point = data[1];

        scan.close();

        int result = -1;

        if (p1_point.length() == p2_point.length()) {
            for (int i = 0; i < p1_point.length(); i++) {
                if (Integer.parseInt(String.valueOf(p1_point.charAt(i))) < Integer.parseInt(String.valueOf(p2_point.charAt(i)))) {
                    result = 1;
                    break;
                } else if (Integer.parseInt(String.valueOf(p1_point.charAt(i))) > Integer.parseInt(String.valueOf(p2_point.charAt(i)))) {
                    result = 0;
                    break;
                }
            }
        } else if(p1_point.length() < p2_point.length()) {
            result = 1;
        } else {
            result = 0;
        }

        switch (result) {
            case -1:
                System.out.println(-1);
                break;
            case 0:
                System.out.println(p1_name);
                break;
            case 1:
                System.out.println(p2_name);
                break;
        }
    }
}
0