結果

問題 No.138 化石のバージョン
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-24 16:01:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-06-23 22:46:17
合計ジャッジ時間 7,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,332 KB
testcase_01 AC 127 ms
41,452 KB
testcase_02 WA -
testcase_03 AC 111 ms
40,168 KB
testcase_04 AC 124 ms
41,748 KB
testcase_05 AC 121 ms
41,392 KB
testcase_06 AC 126 ms
41,468 KB
testcase_07 AC 126 ms
41,220 KB
testcase_08 AC 128 ms
41,492 KB
testcase_09 AC 129 ms
41,428 KB
testcase_10 AC 127 ms
41,656 KB
testcase_11 AC 124 ms
41,620 KB
testcase_12 AC 127 ms
41,428 KB
testcase_13 AC 124 ms
41,620 KB
testcase_14 AC 126 ms
41,284 KB
testcase_15 AC 128 ms
41,512 KB
testcase_16 AC 126 ms
41,652 KB
testcase_17 AC 124 ms
41,516 KB
testcase_18 AC 123 ms
41,480 KB
testcase_19 AC 126 ms
41,532 KB
testcase_20 AC 124 ms
41,492 KB
testcase_21 AC 130 ms
41,048 KB
testcase_22 AC 128 ms
41,688 KB
testcase_23 AC 126 ms
41,480 KB
testcase_24 AC 125 ms
41,320 KB
testcase_25 AC 125 ms
41,024 KB
testcase_26 AC 126 ms
41,332 KB
testcase_27 AC 127 ms
41,440 KB
testcase_28 AC 132 ms
41,180 KB
testcase_29 AC 125 ms
41,472 KB
testcase_30 AC 124 ms
41,728 KB
testcase_31 AC 126 ms
41,504 KB
testcase_32 AC 111 ms
40,356 KB
testcase_33 AC 122 ms
41,244 KB
testcase_34 AC 112 ms
40,060 KB
testcase_35 AC 125 ms
41,468 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]*100+Integer.parseInt(t[i][j++]);
		System.out.println(S[0]<S[1]?"NO":"YES");
	}
}
0