結果

問題 No.138 化石のバージョン
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-15 00:22:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 918 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 78,228 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-06-28 11:55:11
合計ジャッジ時間 7,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,860 KB
testcase_01 AC 127 ms
54,080 KB
testcase_02 AC 113 ms
52,968 KB
testcase_03 AC 124 ms
53,960 KB
testcase_04 AC 123 ms
53,868 KB
testcase_05 AC 122 ms
53,852 KB
testcase_06 AC 109 ms
52,796 KB
testcase_07 AC 124 ms
53,956 KB
testcase_08 AC 126 ms
53,972 KB
testcase_09 AC 127 ms
53,956 KB
testcase_10 AC 124 ms
53,832 KB
testcase_11 AC 123 ms
54,040 KB
testcase_12 AC 121 ms
54,080 KB
testcase_13 AC 108 ms
52,676 KB
testcase_14 AC 123 ms
54,092 KB
testcase_15 AC 123 ms
53,836 KB
testcase_16 AC 124 ms
53,916 KB
testcase_17 AC 125 ms
54,064 KB
testcase_18 AC 123 ms
54,120 KB
testcase_19 AC 123 ms
54,136 KB
testcase_20 AC 129 ms
54,156 KB
testcase_21 AC 125 ms
53,692 KB
testcase_22 AC 124 ms
53,780 KB
testcase_23 AC 128 ms
53,828 KB
testcase_24 AC 125 ms
54,068 KB
testcase_25 AC 123 ms
53,836 KB
testcase_26 AC 110 ms
52,584 KB
testcase_27 AC 122 ms
53,800 KB
testcase_28 AC 120 ms
53,920 KB
testcase_29 AC 125 ms
53,948 KB
testcase_30 AC 125 ms
54,136 KB
testcase_31 AC 123 ms
53,892 KB
testcase_32 AC 124 ms
53,964 KB
testcase_33 AC 121 ms
53,752 KB
testcase_34 AC 122 ms
53,992 KB
testcase_35 AC 120 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String[] v1 = in.next().split("\\.");
        String[] v2 = in.next().split("\\.");

        String ans = "";
        int[] k = new int[3];
        int[] t = new int[3];
        for(int i = 0; i < 3; i++) {
            k[i] = Integer.parseInt(v1[i]);
            t[i] = Integer.parseInt(v2[i]);
        }

        if(k[0] > t[0]) {
            ans = "YES";
        } else if(k[0] == t[0]) {
            if(k[1] > t[1]) {
                ans = "YES";
            } else if(k[1] == t[1]) {
                if(k[2] >= t[2]) {
                    ans = "YES";
                } else {
                    ans = "NO";
                }
            } else {
                ans = "NO";
            }
        } else {
            ans = "NO";
        }

        System.out.println(ans);
    }
}
0