結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 125 ms
53,992 KB
testcase_04 AC 126 ms
54,008 KB
testcase_05 WA -
testcase_06 AC 126 ms
54,108 KB
testcase_07 AC 111 ms
52,756 KB
testcase_08 AC 125 ms
54,036 KB
testcase_09 AC 123 ms
54,076 KB
testcase_10 AC 126 ms
53,780 KB
testcase_11 AC 122 ms
53,928 KB
testcase_12 AC 126 ms
54,064 KB
testcase_13 AC 125 ms
54,184 KB
testcase_14 WA -
testcase_15 AC 125 ms
54,016 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 125 ms
54,032 KB
testcase_21 WA -
testcase_22 AC 124 ms
54,132 KB
testcase_23 WA -
testcase_24 AC 128 ms
53,920 KB
testcase_25 AC 125 ms
53,940 KB
testcase_26 AC 126 ms
53,908 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 128 ms
53,996 KB
testcase_34 AC 127 ms
53,848 KB
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 (b[i].compareTo(a[i]) < 0) {
				ans = "YES"; break;
			}
		}
		System.out.println(ans);
		
	}
}
0