結果

問題 No.138 化石のバージョン
ユーザー sasakkisasakki
提出日時 2016-03-13 13:28:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-12-29 13:52:07
合計ジャッジ時間 8,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,132 KB
testcase_01 AC 129 ms
41,004 KB
testcase_02 AC 127 ms
41,348 KB
testcase_03 AC 127 ms
41,204 KB
testcase_04 AC 124 ms
39,912 KB
testcase_05 AC 126 ms
40,976 KB
testcase_06 AC 126 ms
41,008 KB
testcase_07 AC 127 ms
39,980 KB
testcase_08 AC 115 ms
39,912 KB
testcase_09 AC 116 ms
39,600 KB
testcase_10 AC 130 ms
41,340 KB
testcase_11 AC 135 ms
41,008 KB
testcase_12 AC 131 ms
40,808 KB
testcase_13 AC 138 ms
40,952 KB
testcase_14 AC 124 ms
40,132 KB
testcase_15 AC 131 ms
40,700 KB
testcase_16 AC 136 ms
41,120 KB
testcase_17 AC 135 ms
41,572 KB
testcase_18 AC 132 ms
41,200 KB
testcase_19 AC 130 ms
40,132 KB
testcase_20 AC 132 ms
40,916 KB
testcase_21 AC 117 ms
40,132 KB
testcase_22 AC 125 ms
41,052 KB
testcase_23 AC 117 ms
39,644 KB
testcase_24 AC 135 ms
41,180 KB
testcase_25 AC 114 ms
39,660 KB
testcase_26 AC 133 ms
40,840 KB
testcase_27 AC 138 ms
41,060 KB
testcase_28 AC 135 ms
41,144 KB
testcase_29 AC 133 ms
40,796 KB
testcase_30 AC 134 ms
40,988 KB
testcase_31 AC 135 ms
41,096 KB
testcase_32 AC 132 ms
40,480 KB
testcase_33 AC 138 ms
41,044 KB
testcase_34 AC 145 ms
41,040 KB
testcase_35 AC 136 ms
41,156 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