結果

問題 No.138 化石のバージョン
ユーザー marumaru
提出日時 2016-03-23 12:15:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 943 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 78,020 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-10-01 19:28:06
合計ジャッジ時間 8,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,052 KB
testcase_01 AC 117 ms
41,060 KB
testcase_02 AC 110 ms
40,812 KB
testcase_03 AC 113 ms
41,180 KB
testcase_04 AC 112 ms
41,148 KB
testcase_05 AC 111 ms
41,156 KB
testcase_06 AC 103 ms
39,900 KB
testcase_07 AC 113 ms
40,856 KB
testcase_08 AC 127 ms
41,476 KB
testcase_09 AC 109 ms
40,036 KB
testcase_10 AC 102 ms
39,344 KB
testcase_11 AC 115 ms
40,956 KB
testcase_12 AC 111 ms
40,340 KB
testcase_13 AC 112 ms
40,816 KB
testcase_14 AC 104 ms
40,192 KB
testcase_15 AC 113 ms
40,804 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 123 ms
41,004 KB
testcase_20 AC 120 ms
41,040 KB
testcase_21 WA -
testcase_22 AC 107 ms
40,160 KB
testcase_23 AC 102 ms
39,512 KB
testcase_24 AC 101 ms
39,652 KB
testcase_25 AC 114 ms
40,928 KB
testcase_26 AC 114 ms
40,956 KB
testcase_27 AC 105 ms
40,284 KB
testcase_28 AC 104 ms
40,268 KB
testcase_29 AC 108 ms
40,028 KB
testcase_30 AC 117 ms
41,092 KB
testcase_31 AC 111 ms
41,196 KB
testcase_32 AC 120 ms
40,756 KB
testcase_33 AC 113 ms
41,124 KB
testcase_34 AC 113 ms
41,496 KB
testcase_35 AC 112 ms
41,088 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 {
					System.out.println("NO");
				}
			} else {
				System.out.println("NO");
			}
		} else {
			System.out.println("NO");
		}
	}
}
0