結果

問題 No.138 化石のバージョン
ユーザー samplelpmassamplelpmas
提出日時 2016-11-09 03:43:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,090 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 55,700 KB
最終ジャッジ日時 2024-11-25 05:24:13
合計ジャッジ時間 7,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,804 KB
testcase_01 AC 93 ms
52,680 KB
testcase_02 AC 98 ms
53,008 KB
testcase_03 AC 109 ms
53,888 KB
testcase_04 AC 110 ms
53,624 KB
testcase_05 AC 117 ms
54,136 KB
testcase_06 AC 108 ms
53,628 KB
testcase_07 AC 108 ms
53,972 KB
testcase_08 AC 108 ms
53,628 KB
testcase_09 AC 91 ms
52,476 KB
testcase_10 AC 101 ms
52,816 KB
testcase_11 AC 104 ms
52,580 KB
testcase_12 AC 110 ms
53,784 KB
testcase_13 AC 104 ms
52,684 KB
testcase_14 AC 102 ms
52,872 KB
testcase_15 AC 111 ms
53,852 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 108 ms
53,696 KB
testcase_20 AC 97 ms
52,452 KB
testcase_21 WA -
testcase_22 AC 108 ms
53,720 KB
testcase_23 AC 113 ms
53,768 KB
testcase_24 AC 107 ms
52,424 KB
testcase_25 AC 106 ms
53,892 KB
testcase_26 AC 114 ms
53,900 KB
testcase_27 AC 98 ms
52,792 KB
testcase_28 AC 111 ms
53,776 KB
testcase_29 AC 98 ms
53,868 KB
testcase_30 AC 104 ms
53,996 KB
testcase_31 AC 108 ms
53,988 KB
testcase_32 AC 106 ms
53,908 KB
testcase_33 AC 98 ms
52,472 KB
testcase_34 AC 108 ms
53,956 KB
testcase_35 AC 106 ms
53,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String[] oldVersionString = sc.next().split("\\.");
        String[] targetVersionString = sc.next().split("\\.");

        int[] oldVersion = new int[oldVersionString.length];
        int[] targetVersion = new int[targetVersionString.length];

        for (int i = 0; i < oldVersionString.length; i++) {

            oldVersion[i] = Integer.parseInt(oldVersionString[i]);
            targetVersion[i] = Integer.parseInt(targetVersionString[i]);

        }

        boolean isOld = false;

        if (targetVersion[0] < oldVersion[0]) {
            isOld = true;
        }

        if ((targetVersion[0] == oldVersion[0]) && (targetVersion[1] < oldVersion[1])) {
            isOld = true;
        }

        if ((targetVersion[0] == oldVersion[0]) && (targetVersion[1] == oldVersion[1]) &&
                (targetVersion[2] < oldVersion[2])) {
            isOld = true;
        }

        System.out.println(isOld ? "YES" : "NO");

    }

}
0