結果

問題 No.138 化石のバージョン
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:41:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 56,208 KB
最終ジャッジ日時 2024-09-13 11:21:29
合計ジャッジ時間 7,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 127 ms
53,984 KB
testcase_04 AC 129 ms
53,932 KB
testcase_05 AC 129 ms
53,856 KB
testcase_06 WA -
testcase_07 AC 129 ms
53,836 KB
testcase_08 AC 126 ms
53,964 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 126 ms
53,760 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 123 ms
54,348 KB
testcase_21 WA -
testcase_22 AC 122 ms
54,108 KB
testcase_23 WA -
testcase_24 AC 126 ms
53,860 KB
testcase_25 AC 128 ms
53,840 KB
testcase_26 AC 126 ms
54,140 KB
testcase_27 AC 125 ms
54,172 KB
testcase_28 AC 124 ms
53,740 KB
testcase_29 AC 125 ms
53,756 KB
testcase_30 AC 123 ms
53,948 KB
testcase_31 AC 125 ms
53,748 KB
testcase_32 AC 123 ms
54,124 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String[] a = sc.next().split("\\.",0);
		String[] b = sc.next().split("\\.",0);
		String ans = "NO";
		
		for (int i=0; i<3; i++) {
			if (a[i].compareTo(b[i]) == 1) {
				ans = "YES"; break;
			}
		}
		System.out.println(ans);
		
	}
}
0