結果

問題 No.138 化石のバージョン
ユーザー sasakkisasakki
提出日時 2016-03-13 13:26:07
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-09-25 11:15:35
合計ジャッジ時間 7,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,520 KB
testcase_01 AC 124 ms
41,060 KB
testcase_02 AC 124 ms
41,156 KB
testcase_03 AC 123 ms
41,416 KB
testcase_04 AC 124 ms
41,368 KB
testcase_05 AC 129 ms
41,328 KB
testcase_06 AC 126 ms
41,352 KB
testcase_07 AC 128 ms
41,368 KB
testcase_08 AC 129 ms
41,140 KB
testcase_09 AC 123 ms
41,412 KB
testcase_10 AC 111 ms
41,052 KB
testcase_11 AC 126 ms
41,240 KB
testcase_12 AC 123 ms
41,384 KB
testcase_13 AC 124 ms
41,392 KB
testcase_14 AC 111 ms
41,176 KB
testcase_15 AC 122 ms
41,216 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 122 ms
41,256 KB
testcase_20 AC 123 ms
41,284 KB
testcase_21 WA -
testcase_22 AC 109 ms
39,988 KB
testcase_23 AC 110 ms
41,612 KB
testcase_24 AC 116 ms
41,544 KB
testcase_25 AC 122 ms
41,228 KB
testcase_26 AC 111 ms
41,060 KB
testcase_27 AC 124 ms
41,244 KB
testcase_28 AC 123 ms
41,440 KB
testcase_29 AC 124 ms
41,440 KB
testcase_30 AC 110 ms
40,000 KB
testcase_31 AC 121 ms
41,064 KB
testcase_32 AC 123 ms
41,484 KB
testcase_33 AC 121 ms
41,112 KB
testcase_34 AC 126 ms
41,276 KB
testcase_35 AC 126 ms
41,272 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])){
		continue;
	    }
	    else{
		System.out.println("NO");
		break;
	    }

	}
	
	
    }
    
}
0