結果

問題 No.138 化石のバージョン
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-09 11:22:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 869 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 78,152 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-09 08:39:24
合計ジャッジ時間 6,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,052 KB
testcase_01 AC 102 ms
52,848 KB
testcase_02 AC 98 ms
54,140 KB
testcase_03 AC 110 ms
53,760 KB
testcase_04 AC 96 ms
53,020 KB
testcase_05 AC 98 ms
52,844 KB
testcase_06 AC 110 ms
53,844 KB
testcase_07 AC 108 ms
54,208 KB
testcase_08 AC 112 ms
54,216 KB
testcase_09 AC 112 ms
53,708 KB
testcase_10 AC 99 ms
53,052 KB
testcase_11 AC 107 ms
53,780 KB
testcase_12 AC 123 ms
54,264 KB
testcase_13 AC 108 ms
54,028 KB
testcase_14 AC 111 ms
54,196 KB
testcase_15 AC 113 ms
54,096 KB
testcase_16 AC 108 ms
54,084 KB
testcase_17 AC 113 ms
54,036 KB
testcase_18 AC 113 ms
54,060 KB
testcase_19 AC 105 ms
53,836 KB
testcase_20 AC 114 ms
54,388 KB
testcase_21 AC 117 ms
54,112 KB
testcase_22 AC 114 ms
53,952 KB
testcase_23 AC 114 ms
54,028 KB
testcase_24 AC 112 ms
54,068 KB
testcase_25 AC 100 ms
53,020 KB
testcase_26 AC 92 ms
52,696 KB
testcase_27 AC 114 ms
53,880 KB
testcase_28 AC 113 ms
54,168 KB
testcase_29 AC 115 ms
54,044 KB
testcase_30 AC 116 ms
54,040 KB
testcase_31 AC 118 ms
53,676 KB
testcase_32 AC 100 ms
52,888 KB
testcase_33 AC 100 ms
53,040 KB
testcase_34 AC 97 ms
52,876 KB
testcase_35 AC 110 ms
53,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        String a = koko.next();
        String b = koko.next();
        String[] ah = a.split("\\.");
        String[] bh = b.split("\\.");
        int[] c = new int[6];
        for(int i=0; i<3; i++){
            c[i] = Integer.parseInt(ah[i]);
            c[i+3] = Integer.parseInt(bh[i]);
        }
        if(c[3]>c[0]){
            System.out.println("NO");
        }else if(c[3]<c[0]){
            System.out.println("YES");
        }else if(c[4]>c[1]){
            System.out.println("NO");
        }else if(c[4]<c[1]){
            System.out.println("YES");
        }else if(c[5]>c[2]){
            System.out.println("NO");
        }else if(c[5]<=c[2]){
            System.out.println("YES");
        }
    }
}
0