結果

問題 No.138 化石のバージョン
ユーザー sasakkisasakki
提出日時 2016-03-13 13:28:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-06-09 08:54:25
合計ジャッジ時間 7,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,904 KB
testcase_01 AC 128 ms
41,140 KB
testcase_02 AC 127 ms
40,916 KB
testcase_03 AC 126 ms
41,048 KB
testcase_04 AC 130 ms
40,880 KB
testcase_05 AC 129 ms
41,040 KB
testcase_06 AC 130 ms
41,308 KB
testcase_07 AC 132 ms
41,164 KB
testcase_08 AC 116 ms
40,252 KB
testcase_09 AC 114 ms
39,936 KB
testcase_10 AC 129 ms
41,084 KB
testcase_11 AC 127 ms
41,308 KB
testcase_12 AC 127 ms
41,024 KB
testcase_13 AC 128 ms
41,048 KB
testcase_14 AC 128 ms
40,888 KB
testcase_15 AC 128 ms
41,120 KB
testcase_16 AC 127 ms
41,060 KB
testcase_17 AC 115 ms
40,028 KB
testcase_18 AC 133 ms
41,128 KB
testcase_19 AC 129 ms
41,456 KB
testcase_20 AC 130 ms
41,136 KB
testcase_21 AC 127 ms
40,960 KB
testcase_22 AC 130 ms
41,240 KB
testcase_23 AC 128 ms
40,752 KB
testcase_24 AC 112 ms
40,140 KB
testcase_25 AC 125 ms
40,756 KB
testcase_26 AC 127 ms
41,160 KB
testcase_27 AC 115 ms
40,204 KB
testcase_28 AC 126 ms
41,100 KB
testcase_29 AC 126 ms
40,968 KB
testcase_30 AC 128 ms
41,004 KB
testcase_31 AC 127 ms
41,144 KB
testcase_32 AC 116 ms
39,932 KB
testcase_33 AC 126 ms
40,892 KB
testcase_34 AC 127 ms
41,068 KB
testcase_35 AC 127 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class main{
    public static void main(String args[]){
	
	Scanner scan = new Scanner(System.in);

	String str1 = scan.next();
	String str2 = scan.next();

	String ver1[] = str1.split("\\.", 0);
	String ver2[] = str2.split("\\.", 0);
	
        for(int i = 0; i < ver1.length; i++){
	    if(Integer.parseInt(ver1[i]) > Integer.parseInt(ver2[i])){
		System.out.println("YES");
		break;
	    }
	    else if(Integer.parseInt(ver1[i]) == Integer.parseInt(ver2[i])){
		if(i == ver1.length - 1){
		    System.out.println("YES");
		    break;
		}
		continue;
	    }
	    else{
		System.out.println("NO");
		break;
	    }

	}
	
	
    }
    
}
0