結果

問題 No.138 化石のバージョン
ユーザー r.suzukir.suzuki
提出日時 2016-01-01 22:34:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 3,839 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-09 08:52:59
合計ジャッジ時間 9,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,492 KB
testcase_01 AC 130 ms
41,288 KB
testcase_02 AC 134 ms
41,216 KB
testcase_03 AC 131 ms
41,328 KB
testcase_04 AC 133 ms
41,408 KB
testcase_05 AC 133 ms
41,148 KB
testcase_06 AC 132 ms
41,148 KB
testcase_07 AC 131 ms
41,040 KB
testcase_08 AC 130 ms
41,472 KB
testcase_09 AC 135 ms
41,036 KB
testcase_10 AC 129 ms
41,284 KB
testcase_11 AC 131 ms
41,032 KB
testcase_12 AC 130 ms
41,036 KB
testcase_13 AC 132 ms
41,148 KB
testcase_14 AC 133 ms
41,568 KB
testcase_15 AC 133 ms
41,024 KB
testcase_16 AC 127 ms
41,212 KB
testcase_17 AC 131 ms
40,756 KB
testcase_18 AC 130 ms
40,864 KB
testcase_19 AC 132 ms
41,444 KB
testcase_20 AC 129 ms
41,000 KB
testcase_21 AC 132 ms
41,256 KB
testcase_22 AC 134 ms
41,404 KB
testcase_23 AC 131 ms
41,040 KB
testcase_24 AC 129 ms
41,032 KB
testcase_25 AC 129 ms
41,064 KB
testcase_26 AC 131 ms
40,760 KB
testcase_27 AC 130 ms
40,872 KB
testcase_28 AC 121 ms
41,368 KB
testcase_29 AC 134 ms
41,084 KB
testcase_30 AC 130 ms
41,420 KB
testcase_31 AC 136 ms
40,956 KB
testcase_32 AC 138 ms
41,212 KB
testcase_33 AC 118 ms
40,236 KB
testcase_34 AC 132 ms
41,024 KB
testcase_35 AC 136 ms
40,908 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