結果

問題 No.138 化石のバージョン
ユーザー tatsuyatatsuya
提出日時 2015-05-31 16:05:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 658 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-09 08:44:11
合計ジャッジ時間 7,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,084 KB
testcase_01 AC 127 ms
40,920 KB
testcase_02 AC 123 ms
41,036 KB
testcase_03 AC 108 ms
41,496 KB
testcase_04 AC 126 ms
40,948 KB
testcase_05 AC 109 ms
41,020 KB
testcase_06 AC 126 ms
41,416 KB
testcase_07 AC 124 ms
41,388 KB
testcase_08 AC 124 ms
41,132 KB
testcase_09 AC 123 ms
41,240 KB
testcase_10 AC 112 ms
40,936 KB
testcase_11 AC 122 ms
41,092 KB
testcase_12 AC 114 ms
40,236 KB
testcase_13 AC 125 ms
41,100 KB
testcase_14 AC 120 ms
41,404 KB
testcase_15 AC 121 ms
41,032 KB
testcase_16 AC 126 ms
41,328 KB
testcase_17 AC 124 ms
40,756 KB
testcase_18 AC 114 ms
40,728 KB
testcase_19 AC 116 ms
41,080 KB
testcase_20 AC 120 ms
41,284 KB
testcase_21 AC 107 ms
41,212 KB
testcase_22 AC 114 ms
39,732 KB
testcase_23 AC 121 ms
40,900 KB
testcase_24 AC 132 ms
41,188 KB
testcase_25 AC 127 ms
41,280 KB
testcase_26 AC 125 ms
41,288 KB
testcase_27 AC 127 ms
41,288 KB
testcase_28 AC 124 ms
41,112 KB
testcase_29 AC 125 ms
41,472 KB
testcase_30 AC 126 ms
41,292 KB
testcase_31 AC 124 ms
41,340 KB
testcase_32 AC 112 ms
41,540 KB
testcase_33 AC 125 ms
41,136 KB
testcase_34 AC 114 ms
40,072 KB
testcase_35 AC 127 ms
40,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;

class Test{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String str1 = sc.next(), str2 = sc.next();

        String[] a = str1.split("\\.");
        String[] b = str2.split("\\.");
        for(int i=0; i<3; i++){
            int tmp1=Integer.parseInt(a[i]), tmp2 = Integer.parseInt(b[i]);
            if(tmp1 > tmp2){
                System.out.println("YES");
                return;
            }
            if(tmp1 < tmp2){
                System.out.println("NO");
                return;
            }
        }
        System.out.println("YES");
    }
}
0