結果

問題 No.138 化石のバージョン
ユーザー r.suzukir.suzuki
提出日時 2016-01-01 22:34:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 3,983 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-12-29 13:45:02
合計ジャッジ時間 10,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,300 KB
testcase_01 AC 139 ms
41,372 KB
testcase_02 AC 132 ms
40,340 KB
testcase_03 AC 144 ms
41,036 KB
testcase_04 AC 138 ms
40,772 KB
testcase_05 AC 135 ms
40,648 KB
testcase_06 AC 140 ms
40,956 KB
testcase_07 AC 141 ms
41,012 KB
testcase_08 AC 143 ms
40,948 KB
testcase_09 AC 126 ms
40,488 KB
testcase_10 AC 127 ms
40,696 KB
testcase_11 AC 134 ms
41,448 KB
testcase_12 AC 138 ms
40,944 KB
testcase_13 AC 145 ms
41,340 KB
testcase_14 AC 130 ms
39,796 KB
testcase_15 AC 136 ms
40,972 KB
testcase_16 AC 142 ms
41,284 KB
testcase_17 AC 142 ms
41,092 KB
testcase_18 AC 139 ms
41,144 KB
testcase_19 AC 140 ms
41,064 KB
testcase_20 AC 141 ms
40,924 KB
testcase_21 AC 143 ms
41,212 KB
testcase_22 AC 132 ms
40,680 KB
testcase_23 AC 135 ms
41,052 KB
testcase_24 AC 141 ms
40,912 KB
testcase_25 AC 140 ms
41,188 KB
testcase_26 AC 141 ms
40,956 KB
testcase_27 AC 139 ms
41,104 KB
testcase_28 AC 129 ms
40,300 KB
testcase_29 AC 127 ms
39,696 KB
testcase_30 AC 134 ms
39,868 KB
testcase_31 AC 136 ms
41,080 KB
testcase_32 AC 136 ms
40,636 KB
testcase_33 AC 118 ms
39,656 KB
testcase_34 AC 135 ms
41,352 KB
testcase_35 AC 136 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Version {
	int[] num = new int[3];

	static boolean checkVersion(int[] num1, int[] num2, int i) {
		if (i > 2 || num1[i] > num2[i]) {
			return true;
		} else if (num1[i] < num2[i]) {
			return false;
		} else {
			return checkVersion(num1, num2, ++i);
		}
	}

}

public class No_138 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		String[] s1 = sc.nextLine().split("\\.");
		String[] s2 = sc.nextLine().split("\\.");

		Version old = new Version();
		Version set = new Version();

		for (int i = 0; i < 3; i++) {
			old.num[i] = Integer.parseInt(s1[i]);
			set.num[i] = Integer.parseInt(s2[i]);
		}

		if (Version.checkVersion(old.num, set.num, 0)) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}

}
0