結果

問題 No.138 化石のバージョン
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-02 02:48:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 993 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 51,788 KB
最終ジャッジ日時 2024-06-09 09:09:38
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
51,632 KB
testcase_01 AC 71 ms
51,664 KB
testcase_02 AC 70 ms
51,664 KB
testcase_03 AC 69 ms
51,592 KB
testcase_04 AC 66 ms
51,400 KB
testcase_05 AC 69 ms
51,684 KB
testcase_06 AC 67 ms
51,064 KB
testcase_07 AC 71 ms
51,308 KB
testcase_08 AC 70 ms
51,532 KB
testcase_09 AC 68 ms
51,616 KB
testcase_10 AC 67 ms
51,596 KB
testcase_11 AC 69 ms
51,568 KB
testcase_12 AC 64 ms
51,756 KB
testcase_13 AC 67 ms
51,288 KB
testcase_14 AC 63 ms
51,348 KB
testcase_15 AC 66 ms
51,588 KB
testcase_16 AC 54 ms
49,908 KB
testcase_17 AC 50 ms
50,360 KB
testcase_18 AC 49 ms
50,228 KB
testcase_19 AC 67 ms
51,332 KB
testcase_20 AC 70 ms
51,600 KB
testcase_21 AC 51 ms
50,220 KB
testcase_22 AC 75 ms
51,704 KB
testcase_23 AC 69 ms
51,440 KB
testcase_24 AC 70 ms
51,528 KB
testcase_25 AC 73 ms
51,532 KB
testcase_26 AC 70 ms
51,668 KB
testcase_27 AC 69 ms
51,484 KB
testcase_28 AC 74 ms
51,536 KB
testcase_29 AC 72 ms
51,536 KB
testcase_30 AC 70 ms
51,788 KB
testcase_31 AC 71 ms
51,564 KB
testcase_32 AC 74 ms
51,544 KB
testcase_33 AC 73 ms
51,508 KB
testcase_34 AC 74 ms
51,400 KB
testcase_35 AC 69 ms
51,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No138 {
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String[] str1 = br.readLine().split("\\.");
			int[] ver1 = new int[3];
			dainyu(ver1, str1);
			
			String[] str2 = br.readLine().split("\\.");
			int[] ver2 = new int[3];
			dainyu(ver2, str2);
			
			Hantei(ver1[0], ver2[0]);
			Hantei(ver1[1], ver2[1]);
			Hantei(ver1[2], ver2[2]);
			System.out.println("YES");
			
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
		    e.getStackTrace();
		}
	}
	
	
	public static void dainyu(int[] x, String[] y){
		for(int i=0; i < y.length; i++)
			x[i] = Integer.parseInt(y[i]);
	}
	
	public static void Hantei(int a, int b){
		if(a>b){
			System.out.println("YES");
			System.exit(0);
		}
		else if(a<b){
			System.out.println("NO");
			System.exit(0);
		}
		else ;
	}
}
0