結果

問題 No.138 化石のバージョン
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-30 15:15:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 3,685 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-10-07 18:39:58
合計ジャッジ時間 8,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,044 KB
testcase_01 AC 122 ms
54,496 KB
testcase_02 AC 121 ms
53,968 KB
testcase_03 AC 122 ms
53,740 KB
testcase_04 AC 120 ms
53,908 KB
testcase_05 AC 124 ms
54,068 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 117 ms
54,144 KB
testcase_17 AC 115 ms
53,872 KB
testcase_18 AC 115 ms
53,884 KB
testcase_19 AC 113 ms
53,856 KB
testcase_20 AC 115 ms
54,108 KB
testcase_21 AC 115 ms
53,848 KB
testcase_22 AC 104 ms
53,100 KB
testcase_23 AC 126 ms
54,096 KB
testcase_24 AC 123 ms
54,052 KB
testcase_25 AC 124 ms
54,068 KB
testcase_26 WA -
testcase_27 AC 105 ms
52,820 KB
testcase_28 AC 114 ms
54,064 KB
testcase_29 AC 120 ms
53,884 KB
testcase_30 AC 123 ms
53,908 KB
testcase_31 AC 123 ms
53,992 KB
testcase_32 AC 121 ms
53,860 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki138 {
	
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		String str1 = scan.next();
		String str2 = scan.next();
		scan.close();
		System.out.println(judgeNumbers(str1, str2));
	}
	
	private static String judgeNumbers(String str1,String str2) {
		//String com_numbers1 = "";
		//String com_numbers2 = "";
		String[] str1arr = str1.split("\\.");
		String[] str2arr = str2.split("\\.");

		for(int i = 0; i < str1arr.length; i++){
				if(Integer.parseInt(str1arr[i])<Integer.parseInt(str2arr[i])){
					return "NO";
				}
		}
		/*
		for(int i = 0; i < str1arr.length; i++){
			com_numbers1 += str1arr[i];
		}
		for(int i = 0; i < str2arr.length; i++){
			com_numbers2 += str2arr[i];
		}
		
		
		if(Integer.parseInt(com_numbers1)<Integer.parseInt(com_numbers2)){
			return "NO";
		}
		*/
		return "YES";
	}
}
0