結果

問題 No.138 化石のバージョン
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-15 00:06:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-06-28 11:54:38
合計ジャッジ時間 8,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,984 KB
testcase_01 AC 126 ms
53,868 KB
testcase_02 AC 124 ms
53,904 KB
testcase_03 WA -
testcase_04 AC 122 ms
53,692 KB
testcase_05 AC 125 ms
53,780 KB
testcase_06 AC 131 ms
54,140 KB
testcase_07 AC 125 ms
54,056 KB
testcase_08 AC 125 ms
54,028 KB
testcase_09 AC 125 ms
54,040 KB
testcase_10 AC 124 ms
53,932 KB
testcase_11 AC 124 ms
53,672 KB
testcase_12 AC 124 ms
54,200 KB
testcase_13 AC 123 ms
53,936 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 126 ms
54,316 KB
testcase_20 AC 122 ms
53,796 KB
testcase_21 WA -
testcase_22 AC 128 ms
54,176 KB
testcase_23 AC 125 ms
53,948 KB
testcase_24 AC 127 ms
53,780 KB
testcase_25 AC 122 ms
53,852 KB
testcase_26 AC 130 ms
53,792 KB
testcase_27 AC 123 ms
53,872 KB
testcase_28 AC 122 ms
53,848 KB
testcase_29 AC 121 ms
53,968 KB
testcase_30 AC 120 ms
53,808 KB
testcase_31 AC 119 ms
53,960 KB
testcase_32 AC 121 ms
53,788 KB
testcase_33 AC 124 ms
54,152 KB
testcase_34 AC 128 ms
54,132 KB
testcase_35 AC 131 ms
53,648 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 = "NO";
        for(int i = 0; i < 3; i++) {
            int k = Integer.parseInt(v1[i]);
            int t = Integer.parseInt(v2[i]);
            if(i == 0) {
                if(k > t) {
                    ans = "YES";
                    break;
                } else {
                    if(i == 1) {
                        if(k > t) {
                            ans = "YES";
                            break;
                        } else {
                            if(i == 2) {
                                if(k > t) {
                                    ans = "YES";
                                    break;
                                }
                            }
                        }
                    }
                }
            }
        }

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