結果

問題 No.138 化石のバージョン
ユーザー marumaru
提出日時 2016-03-23 12:18:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 1,029 bytes
コンパイル時間 3,636 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-06-09 08:54:54
合計ジャッジ時間 7,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
54,016 KB
testcase_01 AC 105 ms
54,172 KB
testcase_02 AC 108 ms
53,968 KB
testcase_03 AC 111 ms
54,060 KB
testcase_04 AC 112 ms
53,880 KB
testcase_05 AC 109 ms
54,016 KB
testcase_06 AC 94 ms
52,772 KB
testcase_07 AC 95 ms
52,760 KB
testcase_08 AC 115 ms
54,036 KB
testcase_09 AC 113 ms
54,068 KB
testcase_10 AC 108 ms
53,776 KB
testcase_11 AC 109 ms
53,840 KB
testcase_12 AC 107 ms
54,048 KB
testcase_13 AC 96 ms
52,992 KB
testcase_14 AC 104 ms
54,188 KB
testcase_15 AC 106 ms
54,036 KB
testcase_16 AC 109 ms
53,976 KB
testcase_17 AC 111 ms
54,024 KB
testcase_18 AC 102 ms
53,004 KB
testcase_19 AC 98 ms
52,932 KB
testcase_20 AC 112 ms
54,004 KB
testcase_21 AC 107 ms
53,912 KB
testcase_22 AC 110 ms
54,136 KB
testcase_23 AC 109 ms
54,036 KB
testcase_24 AC 117 ms
53,984 KB
testcase_25 AC 99 ms
52,968 KB
testcase_26 AC 108 ms
54,152 KB
testcase_27 AC 98 ms
52,644 KB
testcase_28 AC 113 ms
54,220 KB
testcase_29 AC 106 ms
53,852 KB
testcase_30 AC 106 ms
53,852 KB
testcase_31 AC 109 ms
53,912 KB
testcase_32 AC 106 ms
53,736 KB
testcase_33 AC 99 ms
52,980 KB
testcase_34 AC 96 ms
52,992 KB
testcase_35 AC 108 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

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("\\.");
		
		int[] a_number = new int[a_str.length];
		int[] b_number = new int[b_str.length];
		
		
		for (int i = 0; i < a_str.length; i++) {
			a_number[i] = Integer.parseInt(a_str[i]);
			b_number[i] = Integer.parseInt(b_str[i]);
		}
		
		if (a_number[0] > b_number[0]) {
			System.out.println("YES");
		} else if (a_number[0] == b_number[0]) {
			if (a_number[1] > b_number[1]) {
				System.out.println("YES");
			} else if (a_number[1] == b_number[1]) {
				if (a_number[2] > b_number[2]) {
					System.out.println("YES");
				} else if (a_number[2] == b_number[2]){
					System.out.println("YES");
				} else {
					System.out.println("NO");
				}
				
				
			} else {
				System.out.println("NO");
			}
		} else {
			System.out.println("NO");
		}
	}
}
0