結果

問題 No.138 化石のバージョン
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 16:24:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 4,422 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-08 00:18:37
合計ジャッジ時間 8,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
41,120 KB
testcase_01 AC 104 ms
41,280 KB
testcase_02 AC 97 ms
41,300 KB
testcase_03 AC 106 ms
41,340 KB
testcase_04 AC 92 ms
41,324 KB
testcase_05 AC 99 ms
40,964 KB
testcase_06 AC 105 ms
39,908 KB
testcase_07 AC 105 ms
41,096 KB
testcase_08 AC 94 ms
41,364 KB
testcase_09 AC 105 ms
41,440 KB
testcase_10 AC 103 ms
41,120 KB
testcase_11 AC 109 ms
41,112 KB
testcase_12 AC 107 ms
41,376 KB
testcase_13 AC 107 ms
41,060 KB
testcase_14 AC 100 ms
41,444 KB
testcase_15 AC 111 ms
41,380 KB
testcase_16 AC 117 ms
41,236 KB
testcase_17 AC 105 ms
41,316 KB
testcase_18 AC 97 ms
40,976 KB
testcase_19 AC 95 ms
41,140 KB
testcase_20 AC 105 ms
41,200 KB
testcase_21 AC 109 ms
41,368 KB
testcase_22 AC 109 ms
41,144 KB
testcase_23 AC 107 ms
41,088 KB
testcase_24 AC 105 ms
41,220 KB
testcase_25 AC 107 ms
41,332 KB
testcase_26 AC 109 ms
41,136 KB
testcase_27 AC 106 ms
41,388 KB
testcase_28 AC 106 ms
41,360 KB
testcase_29 AC 95 ms
41,036 KB
testcase_30 AC 113 ms
41,092 KB
testcase_31 AC 96 ms
41,312 KB
testcase_32 AC 94 ms
41,112 KB
testcase_33 AC 91 ms
41,224 KB
testcase_34 AC 105 ms
40,996 KB
testcase_35 AC 94 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con138 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String[] verA = s.next().split("\\.",3);
		String[] verB = s.next().split("\\.",3);
		s.close();

		int[] A = new int[3] ,B = new int[3];
		for(int i = 0;i < 3;i++){
			A[i] = Integer.parseInt(verA[i]);
			B[i] = Integer.parseInt(verB[i]);
		}

		if(A[0] > B[0]){
			System.out.println("YES");
		}else if(A[0] == B[0]){
			if(A[1] > B[1]){
				System.out.println("YES");
			}else if(A[1] == B[1]){
				if(A[2] >= B[2]){
					System.out.println("YES");
				}else{
					System.out.println("NO");
				}
			}else{
				System.out.println("NO");
			}
		}else{
			System.out.println("NO");
		}
	}

}
0