結果

問題 No.138 化石のバージョン
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-29 17:43:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 1,071 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 79,676 KB
実行使用メモリ 37,980 KB
最終ジャッジ日時 2024-06-09 09:06:05
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
37,180 KB
testcase_01 AC 62 ms
37,528 KB
testcase_02 AC 62 ms
37,628 KB
testcase_03 AC 64 ms
37,888 KB
testcase_04 AC 64 ms
37,460 KB
testcase_05 AC 64 ms
37,680 KB
testcase_06 AC 64 ms
37,888 KB
testcase_07 AC 65 ms
37,712 KB
testcase_08 AC 66 ms
37,980 KB
testcase_09 AC 62 ms
37,724 KB
testcase_10 AC 63 ms
37,708 KB
testcase_11 AC 65 ms
37,456 KB
testcase_12 AC 65 ms
37,172 KB
testcase_13 AC 66 ms
37,840 KB
testcase_14 AC 65 ms
37,680 KB
testcase_15 AC 66 ms
37,692 KB
testcase_16 AC 66 ms
37,896 KB
testcase_17 AC 64 ms
37,288 KB
testcase_18 AC 66 ms
37,496 KB
testcase_19 AC 64 ms
37,656 KB
testcase_20 AC 65 ms
37,804 KB
testcase_21 AC 64 ms
37,748 KB
testcase_22 AC 67 ms
37,968 KB
testcase_23 AC 66 ms
37,952 KB
testcase_24 AC 65 ms
37,548 KB
testcase_25 AC 62 ms
37,748 KB
testcase_26 AC 66 ms
37,864 KB
testcase_27 AC 63 ms
37,428 KB
testcase_28 AC 66 ms
37,964 KB
testcase_29 AC 59 ms
37,912 KB
testcase_30 AC 62 ms
37,916 KB
testcase_31 AC 65 ms
37,720 KB
testcase_32 AC 63 ms
37,424 KB
testcase_33 AC 64 ms
37,548 KB
testcase_34 AC 63 ms
37,808 KB
testcase_35 AC 63 ms
37,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.stream.Stream;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] S = reader.readLine().split("\\.");
        String[] M = reader.readLine().split("\\.");

        int[] possibleOldVersion = Stream.of(S).mapToInt(Integer::parseInt).toArray();
        int[] targetVersion = Stream.of(M).mapToInt(Integer::parseInt).toArray();

        for (int i = 0; i < 3; i++) {

            if (possibleOldVersion[i] < targetVersion[i]) {
                System.out.println("NO");
                break;
            } else if (possibleOldVersion[i] == targetVersion[i]) {
                if (i==2) {
                    System.out.println("YES");
                }
            } else {

                System.out.println("YES");
                break;
            }
        }
    }
}
0