結果

問題 No.138 化石のバージョン
ユーザー 練習生練習生
提出日時 2015-08-19 12:09:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 2,914 ms
コンパイル使用メモリ 75,792 KB
実行使用メモリ 54,004 KB
最終ジャッジ日時 2024-07-18 10:28:37
合計ジャッジ時間 7,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,248 KB
testcase_01 AC 103 ms
40,992 KB
testcase_02 WA -
testcase_03 AC 107 ms
41,300 KB
testcase_04 AC 105 ms
41,256 KB
testcase_05 AC 105 ms
40,996 KB
testcase_06 AC 95 ms
40,940 KB
testcase_07 AC 102 ms
41,408 KB
testcase_08 AC 105 ms
40,984 KB
testcase_09 AC 102 ms
41,360 KB
testcase_10 AC 104 ms
41,272 KB
testcase_11 AC 105 ms
41,056 KB
testcase_12 AC 103 ms
41,084 KB
testcase_13 AC 106 ms
41,108 KB
testcase_14 AC 103 ms
40,172 KB
testcase_15 AC 111 ms
41,216 KB
testcase_16 AC 107 ms
41,240 KB
testcase_17 AC 102 ms
40,980 KB
testcase_18 AC 106 ms
41,280 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 103 ms
41,000 KB
testcase_22 AC 110 ms
40,816 KB
testcase_23 WA -
testcase_24 AC 107 ms
39,968 KB
testcase_25 AC 107 ms
39,968 KB
testcase_26 AC 103 ms
41,404 KB
testcase_27 AC 107 ms
39,984 KB
testcase_28 AC 105 ms
41,080 KB
testcase_29 AC 113 ms
41,120 KB
testcase_30 AC 107 ms
41,060 KB
testcase_31 AC 106 ms
41,172 KB
testcase_32 AC 94 ms
41,244 KB
testcase_33 AC 90 ms
41,096 KB
testcase_34 AC 104 ms
41,244 KB
testcase_35 AC 108 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No138 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] kasekiVer = sc.next().split("\\.");
		String[] hanteiVer = sc.next().split("\\.");
		sc.close();
		String kaseki = "NO";
		for(int i = 2; i >= 0; i--){
			if(Integer.valueOf(kasekiVer[i]) >= Integer.valueOf(hanteiVer[i])){
				kaseki = "YES";
			}else{
				kaseki = "NO";
			}
		}
		System.out.println(kaseki);
	}
}
0