結果

問題 No.138 化石のバージョン
ユーザー omc-testomc-test
提出日時 2016-08-03 15:00:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-11-06 23:43:33
合計ジャッジ時間 7,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,120 KB
testcase_01 AC 129 ms
41,312 KB
testcase_02 WA -
testcase_03 AC 127 ms
41,240 KB
testcase_04 AC 128 ms
41,060 KB
testcase_05 AC 126 ms
41,084 KB
testcase_06 AC 132 ms
41,400 KB
testcase_07 AC 125 ms
41,328 KB
testcase_08 AC 127 ms
41,156 KB
testcase_09 AC 125 ms
40,976 KB
testcase_10 AC 125 ms
41,184 KB
testcase_11 AC 116 ms
40,032 KB
testcase_12 AC 136 ms
41,440 KB
testcase_13 AC 127 ms
41,308 KB
testcase_14 AC 128 ms
41,204 KB
testcase_15 AC 130 ms
41,500 KB
testcase_16 AC 130 ms
41,184 KB
testcase_17 AC 133 ms
41,288 KB
testcase_18 AC 128 ms
41,120 KB
testcase_19 AC 115 ms
40,064 KB
testcase_20 AC 130 ms
41,308 KB
testcase_21 AC 115 ms
40,364 KB
testcase_22 AC 126 ms
40,848 KB
testcase_23 AC 127 ms
40,872 KB
testcase_24 AC 128 ms
40,952 KB
testcase_25 AC 128 ms
41,256 KB
testcase_26 AC 129 ms
41,236 KB
testcase_27 AC 129 ms
41,096 KB
testcase_28 AC 129 ms
41,056 KB
testcase_29 AC 126 ms
41,044 KB
testcase_30 AC 125 ms
41,076 KB
testcase_31 AC 130 ms
41,128 KB
testcase_32 AC 122 ms
40,192 KB
testcase_33 AC 128 ms
41,372 KB
testcase_34 AC 127 ms
41,100 KB
testcase_35 AC 129 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int kaseki = getVersion(sc.next());
		int judge = getVersion(sc.next());
		sc.close();
		System.out.println(kaseki >= judge ? "YES" : "NO");
	}

	public static int getVersion(String version){
		String[] s = version.split("\\.");
		int no = 0;
		for(int i=0; i<3; i++){
			no = no * 100 + Integer.valueOf(s[i]);
		}
		return no;
	}
}
0