結果

問題 No.138 化石のバージョン
ユーザー 練習生練習生
提出日時 2015-08-19 12:12:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 3,869 ms
コンパイル使用メモリ 75,068 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-07-18 10:28:50
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,372 KB
testcase_01 AC 90 ms
41,028 KB
testcase_02 AC 101 ms
41,188 KB
testcase_03 WA -
testcase_04 AC 86 ms
41,288 KB
testcase_05 AC 87 ms
41,544 KB
testcase_06 AC 106 ms
41,484 KB
testcase_07 AC 106 ms
41,304 KB
testcase_08 AC 93 ms
41,236 KB
testcase_09 AC 99 ms
41,412 KB
testcase_10 AC 112 ms
41,304 KB
testcase_11 AC 87 ms
41,108 KB
testcase_12 AC 95 ms
41,004 KB
testcase_13 AC 106 ms
40,168 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 110 ms
41,300 KB
testcase_20 AC 109 ms
41,036 KB
testcase_21 WA -
testcase_22 AC 92 ms
41,200 KB
testcase_23 AC 96 ms
41,384 KB
testcase_24 AC 94 ms
41,000 KB
testcase_25 AC 94 ms
41,540 KB
testcase_26 AC 107 ms
41,488 KB
testcase_27 AC 109 ms
41,368 KB
testcase_28 AC 106 ms
41,412 KB
testcase_29 AC 106 ms
40,152 KB
testcase_30 AC 106 ms
41,160 KB
testcase_31 AC 104 ms
41,512 KB
testcase_32 AC 98 ms
41,104 KB
testcase_33 AC 93 ms
41,156 KB
testcase_34 AC 106 ms
40,252 KB
testcase_35 AC 104 ms
40,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No138 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] kasekiVer = sc.next().split("\\.");
		String[] hanteiVer = sc.next().split("\\.");
		sc.close();
		String kaseki = "YES";
		for(int i = 2; i >= 0; i--){
			if(Integer.valueOf(kasekiVer[i]) > Integer.valueOf(hanteiVer[i])){
				kaseki = "YES";
			}else{
				kaseki = "NO";
			}
		}
		System.out.println(kaseki);
	}
}
0