結果

問題 No.138 化石のバージョン
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:54:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 3,695 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-06-09 09:01:28
合計ジャッジ時間 8,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,184 KB
testcase_01 AC 121 ms
41,036 KB
testcase_02 AC 111 ms
40,216 KB
testcase_03 AC 112 ms
40,256 KB
testcase_04 AC 104 ms
41,444 KB
testcase_05 AC 120 ms
41,284 KB
testcase_06 AC 121 ms
41,164 KB
testcase_07 AC 124 ms
41,016 KB
testcase_08 AC 109 ms
41,036 KB
testcase_09 AC 123 ms
41,292 KB
testcase_10 AC 122 ms
41,404 KB
testcase_11 AC 122 ms
41,028 KB
testcase_12 AC 125 ms
41,180 KB
testcase_13 AC 123 ms
41,224 KB
testcase_14 AC 126 ms
41,168 KB
testcase_15 AC 118 ms
41,164 KB
testcase_16 AC 112 ms
40,128 KB
testcase_17 AC 115 ms
41,132 KB
testcase_18 AC 121 ms
40,992 KB
testcase_19 AC 102 ms
40,124 KB
testcase_20 AC 120 ms
41,392 KB
testcase_21 AC 116 ms
41,276 KB
testcase_22 AC 111 ms
40,096 KB
testcase_23 AC 124 ms
41,332 KB
testcase_24 AC 108 ms
41,220 KB
testcase_25 AC 123 ms
41,172 KB
testcase_26 AC 108 ms
40,896 KB
testcase_27 AC 111 ms
41,016 KB
testcase_28 AC 114 ms
40,476 KB
testcase_29 AC 124 ms
41,392 KB
testcase_30 AC 125 ms
41,228 KB
testcase_31 AC 111 ms
40,320 KB
testcase_32 AC 122 ms
41,408 KB
testcase_33 AC 122 ms
41,036 KB
testcase_34 AC 122 ms
41,464 KB
testcase_35 AC 110 ms
40,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = 0, m = 0;
		String[] s = sc.next().split("\\.");
		for (int i = 0; i < 3; i++) {
			n *= 1000;
			n += Integer.parseInt(s[i]);
		}
		s = sc.next().split("\\.");
		for (int i = 0; i < 3; i++) {
			m *= 1000;
			m += Integer.parseInt(s[i]);
		}
		if (n < m) {
			System.out.println("NO");
		} else {
			System.out.println("YES");
		}
	}
}
0