結果

問題 No.138 化石のバージョン
ユーザー marumaru
提出日時 2016-03-23 02:54:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 3,310 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-10-01 19:24:21
合計ジャッジ時間 9,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,244 KB
testcase_01 AC 111 ms
41,388 KB
testcase_02 AC 126 ms
40,900 KB
testcase_03 AC 128 ms
41,284 KB
testcase_04 AC 128 ms
41,348 KB
testcase_05 AC 136 ms
41,160 KB
testcase_06 WA -
testcase_07 AC 134 ms
41,272 KB
testcase_08 AC 131 ms
41,636 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 121 ms
41,148 KB
testcase_20 AC 133 ms
41,548 KB
testcase_21 WA -
testcase_22 AC 126 ms
40,884 KB
testcase_23 AC 127 ms
41,260 KB
testcase_24 AC 127 ms
41,292 KB
testcase_25 AC 127 ms
41,224 KB
testcase_26 AC 127 ms
41,424 KB
testcase_27 AC 133 ms
41,472 KB
testcase_28 AC 135 ms
40,912 KB
testcase_29 AC 126 ms
41,256 KB
testcase_30 AC 132 ms
40,908 KB
testcase_31 AC 135 ms
40,972 KB
testcase_32 AC 128 ms
41,008 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_138 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		String a = stdIn.nextLine();
		String b = stdIn.nextLine();

		String[] a_str = a.split("\\.");
		String[] b_str = b.split("\\.");
		
		if (a_str[0].compareTo(b_str[0]) == 1) {
			System.out.println("YES");
		} else if (a_str[0].compareTo(b_str[0]) == 0) {
			if (a_str[1].compareTo(b_str[1]) == 1) {
				System.out.println("YES");
			} else if (a_str[1].compareTo(b_str[1]) == 0) {
				if (a_str[2].compareTo(b_str[2]) == 1) {
					System.out.println("YES");
				} else {
					System.out.println("NO");
				}
			} else {
				System.out.println("NO");
			}
		} else {
			System.out.println("NO");
		}
	}
}
0