結果

問題 No.138 化石のバージョン
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-24 16:02:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-06-09 08:36:37
合計ジャッジ時間 7,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,080 KB
testcase_01 AC 129 ms
41,196 KB
testcase_02 AC 126 ms
41,024 KB
testcase_03 AC 112 ms
39,952 KB
testcase_04 AC 128 ms
41,144 KB
testcase_05 AC 126 ms
41,024 KB
testcase_06 AC 128 ms
41,124 KB
testcase_07 AC 129 ms
41,144 KB
testcase_08 AC 126 ms
41,368 KB
testcase_09 AC 131 ms
41,256 KB
testcase_10 AC 126 ms
41,292 KB
testcase_11 AC 132 ms
41,408 KB
testcase_12 AC 130 ms
40,820 KB
testcase_13 AC 132 ms
40,756 KB
testcase_14 AC 127 ms
41,100 KB
testcase_15 AC 127 ms
41,128 KB
testcase_16 AC 131 ms
40,896 KB
testcase_17 AC 131 ms
41,056 KB
testcase_18 AC 129 ms
41,028 KB
testcase_19 AC 129 ms
41,016 KB
testcase_20 AC 129 ms
41,088 KB
testcase_21 AC 130 ms
41,076 KB
testcase_22 AC 128 ms
40,896 KB
testcase_23 AC 117 ms
40,144 KB
testcase_24 AC 131 ms
40,924 KB
testcase_25 AC 127 ms
41,124 KB
testcase_26 AC 126 ms
41,288 KB
testcase_27 AC 113 ms
39,740 KB
testcase_28 AC 127 ms
40,956 KB
testcase_29 AC 129 ms
41,096 KB
testcase_30 AC 126 ms
40,872 KB
testcase_31 AC 116 ms
39,856 KB
testcase_32 AC 128 ms
41,016 KB
testcase_33 AC 116 ms
40,188 KB
testcase_34 AC 125 ms
40,900 KB
testcase_35 AC 128 ms
40,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] a) {
		Scanner s = new Scanner(System.in);
		String[][] t = {s.nextLine().split("\\."),s.nextLine().split("\\.")};
		int[] S = new int[2];for(int i=0;i<2;i++)for(int j=0;j<3;)S[i]=S[i]*1000+Integer.parseInt(t[i][j++]);
		System.out.println(S[0]<S[1]?"NO":"YES");
	}
}
0