結果

問題 No.138 化石のバージョン
ユーザー mits58mits58
提出日時 2016-07-02 16:39:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-06-09 08:58:44
合計ジャッジ時間 6,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
52,792 KB
testcase_01 AC 108 ms
53,736 KB
testcase_02 AC 99 ms
52,836 KB
testcase_03 AC 109 ms
54,148 KB
testcase_04 AC 108 ms
54,000 KB
testcase_05 AC 109 ms
53,748 KB
testcase_06 AC 99 ms
52,912 KB
testcase_07 AC 108 ms
53,848 KB
testcase_08 AC 95 ms
52,568 KB
testcase_09 AC 109 ms
54,012 KB
testcase_10 AC 110 ms
53,984 KB
testcase_11 AC 108 ms
52,652 KB
testcase_12 AC 108 ms
53,972 KB
testcase_13 AC 110 ms
53,996 KB
testcase_14 AC 112 ms
53,792 KB
testcase_15 AC 108 ms
54,160 KB
testcase_16 AC 93 ms
52,472 KB
testcase_17 AC 110 ms
54,024 KB
testcase_18 AC 109 ms
53,796 KB
testcase_19 AC 110 ms
54,140 KB
testcase_20 AC 111 ms
53,876 KB
testcase_21 AC 107 ms
54,168 KB
testcase_22 AC 112 ms
54,248 KB
testcase_23 AC 96 ms
52,868 KB
testcase_24 AC 97 ms
52,724 KB
testcase_25 AC 109 ms
53,908 KB
testcase_26 AC 107 ms
53,824 KB
testcase_27 AC 107 ms
53,236 KB
testcase_28 AC 108 ms
53,756 KB
testcase_29 AC 108 ms
53,996 KB
testcase_30 AC 96 ms
52,956 KB
testcase_31 AC 107 ms
54,124 KB
testcase_32 AC 91 ms
52,288 KB
testcase_33 AC 106 ms
53,732 KB
testcase_34 AC 104 ms
54,068 KB
testcase_35 AC 98 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			String[] s0=(sc.next()).split("\\.");
			String[] s1=(sc.next()).split("\\.");
			for(int i=0;i<3;i++){
				int a=Integer.parseInt(s0[i]);
				int b=Integer.parseInt(s1[i]);
				if(a>b){
					System.out.println("YES");
					break;
				}
				else if(b>a){
					System.out.println("NO");
					break;
				}
				if(i==2) System.out.println("YES");
			}
		}
	}
}
0