結果

問題 No.138 化石のバージョン
ユーザー jimanojimano
提出日時 2018-01-13 21:27:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 873 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 76,868 KB
実行使用メモリ 37,316 KB
最終ジャッジ日時 2024-06-09 09:13:17
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,040 KB
testcase_01 AC 50 ms
37,164 KB
testcase_02 AC 54 ms
37,184 KB
testcase_03 AC 48 ms
36,992 KB
testcase_04 AC 47 ms
37,196 KB
testcase_05 AC 49 ms
36,684 KB
testcase_06 AC 49 ms
37,188 KB
testcase_07 AC 49 ms
37,216 KB
testcase_08 AC 49 ms
37,188 KB
testcase_09 AC 49 ms
36,704 KB
testcase_10 AC 48 ms
37,040 KB
testcase_11 AC 48 ms
37,264 KB
testcase_12 AC 47 ms
37,008 KB
testcase_13 AC 46 ms
37,216 KB
testcase_14 AC 46 ms
36,780 KB
testcase_15 AC 47 ms
37,172 KB
testcase_16 AC 50 ms
37,020 KB
testcase_17 AC 50 ms
37,184 KB
testcase_18 AC 47 ms
36,696 KB
testcase_19 AC 47 ms
36,960 KB
testcase_20 AC 47 ms
37,176 KB
testcase_21 AC 48 ms
37,180 KB
testcase_22 AC 48 ms
37,020 KB
testcase_23 AC 47 ms
37,164 KB
testcase_24 AC 48 ms
36,672 KB
testcase_25 AC 47 ms
37,032 KB
testcase_26 AC 47 ms
37,272 KB
testcase_27 AC 46 ms
37,316 KB
testcase_28 AC 48 ms
37,188 KB
testcase_29 AC 47 ms
36,892 KB
testcase_30 AC 49 ms
36,932 KB
testcase_31 AC 48 ms
37,196 KB
testcase_32 AC 50 ms
36,784 KB
testcase_33 AC 51 ms
36,792 KB
testcase_34 AC 48 ms
37,024 KB
testcase_35 AC 49 ms
37,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No0138 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] s1 = br.readLine().split("\\.");
			String[] s2 = br.readLine().split("\\.");
			int[][] v = new int[2][3];

			for (int i = 0; i < s1.length; i++) {
				v[0][i] = Integer.parseInt(s1[i]);
				v[1][i] = Integer.parseInt(s2[i]);
			}

			for (int j = 0; j < 3; j++) {
				if (v[0][j] > v[1][j]) {
					System.out.println("YES");
					break;
				} else if (v[0][j] < v[1][j]) {
					System.out.println("NO");
					break;
				} else if (j == 2 && v[0][j] == v[1][j]) {
					System.out.println("YES");
				}
			}
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0