結果

問題 No.138 化石のバージョン
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 13:54:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-09-13 11:22:20
合計ジャッジ時間 7,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,100 KB
testcase_01 AC 125 ms
53,772 KB
testcase_02 AC 122 ms
54,200 KB
testcase_03 AC 122 ms
53,940 KB
testcase_04 AC 123 ms
53,908 KB
testcase_05 AC 124 ms
53,764 KB
testcase_06 AC 126 ms
54,152 KB
testcase_07 AC 123 ms
53,932 KB
testcase_08 AC 124 ms
54,004 KB
testcase_09 AC 124 ms
54,232 KB
testcase_10 AC 123 ms
53,904 KB
testcase_11 AC 122 ms
54,140 KB
testcase_12 AC 124 ms
53,772 KB
testcase_13 AC 127 ms
54,000 KB
testcase_14 AC 114 ms
52,996 KB
testcase_15 AC 124 ms
53,952 KB
testcase_16 AC 112 ms
52,868 KB
testcase_17 AC 125 ms
53,976 KB
testcase_18 AC 126 ms
53,772 KB
testcase_19 AC 124 ms
53,772 KB
testcase_20 AC 128 ms
53,952 KB
testcase_21 AC 126 ms
54,072 KB
testcase_22 AC 126 ms
54,016 KB
testcase_23 AC 129 ms
54,132 KB
testcase_24 AC 126 ms
53,884 KB
testcase_25 AC 126 ms
54,040 KB
testcase_26 AC 126 ms
54,124 KB
testcase_27 AC 126 ms
54,100 KB
testcase_28 AC 126 ms
54,080 KB
testcase_29 AC 124 ms
54,048 KB
testcase_30 AC 127 ms
53,912 KB
testcase_31 AC 125 ms
53,788 KB
testcase_32 AC 128 ms
53,936 KB
testcase_33 AC 127 ms
53,948 KB
testcase_34 AC 131 ms
53,704 KB
testcase_35 AC 127 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

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 = "YES";
		
		
		for (int i=0; i<3; i++) {
			int t1 = Integer.parseInt(b[i]);
			int t2 = Integer.parseInt(a[i]);
			
			if (t1 < t2) {
				ans = "YES"; break;
			}
			else if (t1 > t2) {
				ans = "NO"; break;
			}
		}
		System.out.println(ans);
		
	}
}
0