結果

問題 No.138 化石のバージョン
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 07:11:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 1,054 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-09 09:03:17
合計ジャッジ時間 8,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,184 KB
testcase_01 AC 117 ms
53,760 KB
testcase_02 AC 125 ms
54,064 KB
testcase_03 AC 127 ms
53,972 KB
testcase_04 AC 117 ms
54,096 KB
testcase_05 AC 106 ms
53,112 KB
testcase_06 AC 120 ms
53,820 KB
testcase_07 AC 125 ms
53,796 KB
testcase_08 AC 124 ms
54,152 KB
testcase_09 AC 132 ms
53,828 KB
testcase_10 AC 125 ms
52,900 KB
testcase_11 AC 131 ms
54,104 KB
testcase_12 AC 127 ms
54,016 KB
testcase_13 AC 126 ms
54,104 KB
testcase_14 AC 126 ms
54,372 KB
testcase_15 AC 126 ms
54,136 KB
testcase_16 AC 125 ms
54,236 KB
testcase_17 AC 126 ms
53,952 KB
testcase_18 AC 132 ms
53,744 KB
testcase_19 AC 127 ms
54,136 KB
testcase_20 AC 126 ms
53,876 KB
testcase_21 AC 127 ms
53,720 KB
testcase_22 AC 128 ms
54,096 KB
testcase_23 AC 121 ms
54,276 KB
testcase_24 AC 131 ms
54,284 KB
testcase_25 AC 125 ms
54,032 KB
testcase_26 AC 126 ms
53,908 KB
testcase_27 AC 122 ms
53,912 KB
testcase_28 AC 125 ms
53,996 KB
testcase_29 AC 136 ms
53,980 KB
testcase_30 AC 117 ms
53,120 KB
testcase_31 AC 120 ms
54,324 KB
testcase_32 AC 108 ms
53,064 KB
testcase_33 AC 125 ms
54,128 KB
testcase_34 AC 119 ms
53,964 KB
testcase_35 AC 113 ms
53,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s0 = sc.nextLine();
        String [] arr0 = s0.split("\\.");
        int A0 = Integer.parseInt(arr0[0]);
        int B0 = Integer.parseInt(arr0[1]);
        int C0 = Integer.parseInt(arr0[2]);
        String s1 = sc.nextLine();
        String [] arr1 = s1.split("\\.");
        int A1 = Integer.parseInt(arr1[0]);
        int B1 = Integer.parseInt(arr1[1]);
        int C1 = Integer.parseInt(arr1[2]);
        
        if(A1>A0){
            System.out.println("NO");
        }else if(A1<A0){
            System.out.println("YES");
        }else{
            if(B1>B0){
                System.out.println("NO");
            }else if(B1<B0){
                System.out.println("YES");
            }else{
                if(C1>C0){
                    System.out.println("NO");
                }else if(C1<=C0){
                    System.out.println("YES");
                }
            }
        }
    }
}
0