結果

問題 No.138 化石のバージョン
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 15:14:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 54,096 KB
最終ジャッジ日時 2024-11-21 10:45:01
合計ジャッジ時間 7,327 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,296 KB
testcase_01 AC 121 ms
41,216 KB
testcase_02 AC 118 ms
41,292 KB
testcase_03 AC 119 ms
41,160 KB
testcase_04 AC 118 ms
41,216 KB
testcase_05 AC 120 ms
41,032 KB
testcase_06 AC 111 ms
41,084 KB
testcase_07 AC 120 ms
41,088 KB
testcase_08 AC 119 ms
40,976 KB
testcase_09 AC 122 ms
40,740 KB
testcase_10 AC 121 ms
41,248 KB
testcase_11 AC 107 ms
41,184 KB
testcase_12 WA -
testcase_13 AC 116 ms
39,892 KB
testcase_14 WA -
testcase_15 AC 119 ms
41,240 KB
testcase_16 AC 120 ms
41,188 KB
testcase_17 AC 119 ms
41,060 KB
testcase_18 AC 118 ms
41,192 KB
testcase_19 AC 118 ms
41,040 KB
testcase_20 AC 118 ms
40,928 KB
testcase_21 AC 121 ms
41,200 KB
testcase_22 AC 120 ms
41,152 KB
testcase_23 AC 120 ms
41,200 KB
testcase_24 AC 124 ms
41,084 KB
testcase_25 AC 120 ms
41,192 KB
testcase_26 AC 121 ms
41,192 KB
testcase_27 AC 109 ms
41,172 KB
testcase_28 AC 120 ms
41,288 KB
testcase_29 WA -
testcase_30 AC 120 ms
41,216 KB
testcase_31 WA -
testcase_32 AC 120 ms
40,912 KB
testcase_33 WA -
testcase_34 AC 120 ms
40,952 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a0 = sc.next();
		String a1 = sc.next();
		String[] s1 = a0.split("\\.");
		String[] s2 = a1.split("\\.");
		String ans = "";
		for(int i = 0 ; i < s1.length ; i++) {
			if(s1[i].compareTo(s2[i]) > 0) {
				ans = "YES";
				break;
			} else if(s1[i].compareTo(s2[i]) < 0){
				ans = "NO";
				break;
			} else if(s1[i].compareTo(s2[i]) == 0 && i == 2) {
				ans = "YES";
			}
		}
		System.out.println(ans);
 	}
}

0