結果

問題 No.138 化石のバージョン
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-26 21:19:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 645 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 76,348 KB
実行使用メモリ 54,048 KB
最終ジャッジ日時 2024-09-21 17:38:16
合計ジャッジ時間 7,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,292 KB
testcase_01 AC 119 ms
41,344 KB
testcase_02 WA -
testcase_03 AC 113 ms
41,104 KB
testcase_04 AC 119 ms
41,512 KB
testcase_05 AC 122 ms
41,504 KB
testcase_06 AC 123 ms
41,336 KB
testcase_07 AC 120 ms
41,172 KB
testcase_08 WA -
testcase_09 AC 120 ms
41,504 KB
testcase_10 AC 118 ms
41,148 KB
testcase_11 AC 102 ms
41,316 KB
testcase_12 AC 114 ms
41,212 KB
testcase_13 WA -
testcase_14 AC 117 ms
41,320 KB
testcase_15 WA -
testcase_16 AC 117 ms
41,172 KB
testcase_17 AC 116 ms
41,232 KB
testcase_18 AC 126 ms
41,420 KB
testcase_19 AC 105 ms
41,248 KB
testcase_20 AC 105 ms
41,012 KB
testcase_21 AC 106 ms
40,252 KB
testcase_22 AC 114 ms
40,036 KB
testcase_23 AC 121 ms
41,548 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 119 ms
41,228 KB
testcase_27 AC 116 ms
41,276 KB
testcase_28 AC 114 ms
40,240 KB
testcase_29 AC 115 ms
41,220 KB
testcase_30 AC 116 ms
41,044 KB
testcase_31 AC 116 ms
41,144 KB
testcase_32 AC 111 ms
39,984 KB
testcase_33 AC 114 ms
41,584 KB
testcase_34 AC 116 ms
41,428 KB
testcase_35 AC 109 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		String verA = sc.next();
		String verB = sc.next();
		
		String[] arrayVerA = verA.split("\\.", 0);
		String[] arrayVerB = verB.split("\\.", 0);
		
		String plainVerA = "", plainVerB = "";
		
		for(int i = 0; i < arrayVerA.length; i++) {
			plainVerA+=arrayVerA[i];
			plainVerB+=arrayVerB[i];
		}
		
		int intPlainVerA = Integer.parseInt(plainVerA);
		int intPlainVerB = Integer.parseInt(plainVerB);
			
		if(intPlainVerA >= intPlainVerB) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0