結果

問題 No.138 化石のバージョン
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-29 17:41:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 988 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 79,568 KB
実行使用メモリ 50,996 KB
最終ジャッジ日時 2024-09-13 22:56:42
合計ジャッジ時間 6,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
37,532 KB
testcase_01 AC 67 ms
37,608 KB
testcase_02 AC 66 ms
37,744 KB
testcase_03 AC 63 ms
37,400 KB
testcase_04 AC 65 ms
37,560 KB
testcase_05 AC 65 ms
37,664 KB
testcase_06 AC 66 ms
37,872 KB
testcase_07 AC 67 ms
37,688 KB
testcase_08 AC 67 ms
37,532 KB
testcase_09 AC 67 ms
37,584 KB
testcase_10 AC 64 ms
37,376 KB
testcase_11 AC 65 ms
37,316 KB
testcase_12 AC 65 ms
37,548 KB
testcase_13 AC 65 ms
37,452 KB
testcase_14 AC 66 ms
37,856 KB
testcase_15 AC 64 ms
37,428 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 65 ms
37,836 KB
testcase_20 AC 65 ms
37,748 KB
testcase_21 WA -
testcase_22 AC 63 ms
36,948 KB
testcase_23 AC 66 ms
37,556 KB
testcase_24 AC 66 ms
37,960 KB
testcase_25 AC 65 ms
37,984 KB
testcase_26 AC 65 ms
37,496 KB
testcase_27 AC 64 ms
37,812 KB
testcase_28 AC 65 ms
37,840 KB
testcase_29 AC 64 ms
37,356 KB
testcase_30 AC 65 ms
37,040 KB
testcase_31 AC 64 ms
37,816 KB
testcase_32 AC 64 ms
37,712 KB
testcase_33 AC 65 ms
38,112 KB
testcase_34 AC 64 ms
37,452 KB
testcase_35 AC 64 ms
37,504 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]) {

            } else {

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

        }
    }
}
0