結果

問題 No.138 化石のバージョン
ユーザー ffmm00ffmm00
提出日時 2015-06-10 04:24:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 78,276 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-06-09 08:45:47
合計ジャッジ時間 9,213 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,968 KB
testcase_01 AC 117 ms
53,932 KB
testcase_02 AC 122 ms
53,788 KB
testcase_03 AC 125 ms
53,788 KB
testcase_04 AC 137 ms
53,732 KB
testcase_05 AC 136 ms
54,096 KB
testcase_06 AC 131 ms
54,004 KB
testcase_07 AC 126 ms
53,904 KB
testcase_08 AC 130 ms
54,196 KB
testcase_09 AC 119 ms
53,744 KB
testcase_10 AC 121 ms
54,240 KB
testcase_11 AC 122 ms
54,140 KB
testcase_12 AC 123 ms
53,876 KB
testcase_13 AC 117 ms
54,052 KB
testcase_14 AC 108 ms
52,952 KB
testcase_15 AC 125 ms
53,860 KB
testcase_16 AC 121 ms
54,200 KB
testcase_17 AC 121 ms
54,056 KB
testcase_18 AC 124 ms
53,976 KB
testcase_19 AC 127 ms
54,144 KB
testcase_20 AC 126 ms
53,948 KB
testcase_21 AC 119 ms
54,080 KB
testcase_22 AC 127 ms
53,924 KB
testcase_23 AC 130 ms
54,284 KB
testcase_24 AC 124 ms
54,064 KB
testcase_25 AC 121 ms
53,884 KB
testcase_26 AC 125 ms
54,104 KB
testcase_27 AC 122 ms
53,856 KB
testcase_28 AC 113 ms
53,784 KB
testcase_29 AC 124 ms
53,952 KB
testcase_30 AC 132 ms
53,836 KB
testcase_31 AC 123 ms
53,968 KB
testcase_32 AC 119 ms
54,028 KB
testcase_33 AC 118 ms
54,356 KB
testcase_34 AC 123 ms
54,052 KB
testcase_35 AC 125 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N138 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		String A = sca.next();
		String B = sca.next();

		String[] A2 = A.split("\\.", 0);
		String[] B2 = B.split("\\.", 0);
		boolean C = true;

		for (int i = 0; i < 3; i++) {
			if (Integer.parseInt(A2[i]) < Integer.parseInt(B2[i])) {
				C = false;
				break;
			} else if (Integer.parseInt(A2[i]) > Integer.parseInt(B2[i])) {
				break;
			}
		}

		System.out.println(C ? "YES" : "NO");

	}

}
0