結果

問題 No.138 化石のバージョン
ユーザー YatsukuYatsuku
提出日時 2015-12-13 01:37:39
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-09-15 10:59:45
合計ジャッジ時間 7,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,028 KB
testcase_01 AC 123 ms
41,300 KB
testcase_02 AC 124 ms
41,136 KB
testcase_03 AC 131 ms
41,644 KB
testcase_04 AC 116 ms
40,164 KB
testcase_05 AC 124 ms
41,216 KB
testcase_06 AC 126 ms
41,556 KB
testcase_07 AC 130 ms
41,300 KB
testcase_08 AC 116 ms
40,408 KB
testcase_09 AC 131 ms
41,496 KB
testcase_10 AC 129 ms
41,304 KB
testcase_11 AC 130 ms
41,248 KB
testcase_12 AC 120 ms
40,444 KB
testcase_13 AC 128 ms
41,392 KB
testcase_14 AC 118 ms
40,244 KB
testcase_15 AC 125 ms
41,276 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 124 ms
41,224 KB
testcase_20 AC 125 ms
41,192 KB
testcase_21 WA -
testcase_22 AC 123 ms
41,020 KB
testcase_23 AC 129 ms
41,308 KB
testcase_24 AC 128 ms
41,176 KB
testcase_25 AC 126 ms
41,228 KB
testcase_26 AC 129 ms
41,668 KB
testcase_27 AC 122 ms
41,088 KB
testcase_28 AC 122 ms
41,280 KB
testcase_29 AC 121 ms
41,068 KB
testcase_30 AC 125 ms
41,244 KB
testcase_31 AC 126 ms
41,036 KB
testcase_32 AC 125 ms
40,988 KB
testcase_33 AC 116 ms
40,244 KB
testcase_34 AC 131 ms
41,364 KB
testcase_35 AC 132 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		String[] old_ver = stdIn.next().split("\\.");
		String[] ver = stdIn.next().split("\\.");
		
		boolean flag = true;
		for (int i = 0; i < 3; i++) {
			if (Integer.parseInt(old_ver[i]) > Integer.parseInt(ver[i])) {
				if ( flag ) {
					System.out.println("YES");	
					System.exit(0);
				}
			} else if (Integer.parseInt(old_ver[i]) != Integer.parseInt(ver[i])){
				flag = false;
			}
		}
		System.out.println("NO");
	}
}
0