結果

問題 No.138 化石のバージョン
ユーザー matsuyoshi30
提出日時 2018-05-15 00:22:16
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

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