結果

問題 No.138 化石のバージョン
ユーザー DemocoDemoco
提出日時 2015-05-03 15:41:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-06-09 08:41:17
合計ジャッジ時間 7,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,004 KB
testcase_01 AC 106 ms
53,140 KB
testcase_02 AC 127 ms
53,912 KB
testcase_03 AC 122 ms
54,148 KB
testcase_04 AC 122 ms
54,140 KB
testcase_05 AC 134 ms
53,988 KB
testcase_06 AC 129 ms
53,924 KB
testcase_07 AC 124 ms
53,984 KB
testcase_08 AC 122 ms
53,968 KB
testcase_09 AC 114 ms
54,056 KB
testcase_10 AC 118 ms
53,856 KB
testcase_11 AC 125 ms
54,040 KB
testcase_12 AC 127 ms
53,944 KB
testcase_13 AC 118 ms
54,224 KB
testcase_14 AC 120 ms
54,144 KB
testcase_15 AC 116 ms
54,044 KB
testcase_16 AC 125 ms
54,068 KB
testcase_17 AC 106 ms
52,468 KB
testcase_18 AC 120 ms
54,028 KB
testcase_19 AC 121 ms
53,744 KB
testcase_20 AC 106 ms
54,072 KB
testcase_21 AC 121 ms
53,840 KB
testcase_22 AC 102 ms
54,176 KB
testcase_23 AC 124 ms
53,896 KB
testcase_24 AC 104 ms
52,856 KB
testcase_25 AC 119 ms
53,828 KB
testcase_26 AC 116 ms
53,712 KB
testcase_27 AC 127 ms
53,884 KB
testcase_28 AC 125 ms
54,024 KB
testcase_29 AC 117 ms
53,868 KB
testcase_30 AC 120 ms
54,080 KB
testcase_31 AC 126 ms
53,792 KB
testcase_32 AC 128 ms
54,260 KB
testcase_33 AC 127 ms
53,812 KB
testcase_34 AC 125 ms
53,984 KB
testcase_35 AC 118 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Yukico138 {
	public static void main(String[] args) {
		Scanner stdio = new Scanner(System.in);
		String s0 = stdio.next();
		String s1 = stdio.next();
		String[] ver0 = new String[3];
		String[] ver1 = new String[3];
		ver0 = s0.split("[.]");
		ver1 = s1.split("[.]");
		boolean yes = true;
		for(int i=0; i<3; i++) {
			if(Integer.parseInt(ver0[i]) == Integer.parseInt(ver1[i])) {
				continue;
			}else if(Integer.parseInt(ver0[i]) < Integer.parseInt(ver1[i])) {
				yes = false;
				break;
			}else {
				break;
			}
		}
		if(yes) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0