結果

問題 No.138 化石のバージョン
ユーザー kou6839kou6839
提出日時 2015-01-30 22:44:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 1,169 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-12-29 12:58:48
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,112 KB
testcase_01 AC 116 ms
52,948 KB
testcase_02 AC 116 ms
52,964 KB
testcase_03 AC 132 ms
53,900 KB
testcase_04 AC 117 ms
53,056 KB
testcase_05 AC 129 ms
54,164 KB
testcase_06 AC 128 ms
54,268 KB
testcase_07 AC 129 ms
53,988 KB
testcase_08 AC 114 ms
52,908 KB
testcase_09 AC 131 ms
53,996 KB
testcase_10 AC 131 ms
54,100 KB
testcase_11 AC 131 ms
53,984 KB
testcase_12 AC 130 ms
54,132 KB
testcase_13 AC 127 ms
53,864 KB
testcase_14 AC 116 ms
52,828 KB
testcase_15 AC 129 ms
53,924 KB
testcase_16 AC 130 ms
54,004 KB
testcase_17 AC 119 ms
52,872 KB
testcase_18 AC 115 ms
53,880 KB
testcase_19 AC 128 ms
54,064 KB
testcase_20 AC 132 ms
54,040 KB
testcase_21 AC 129 ms
53,952 KB
testcase_22 AC 135 ms
54,116 KB
testcase_23 AC 128 ms
53,848 KB
testcase_24 AC 133 ms
54,244 KB
testcase_25 AC 136 ms
54,052 KB
testcase_26 AC 130 ms
53,916 KB
testcase_27 AC 134 ms
53,964 KB
testcase_28 AC 130 ms
54,136 KB
testcase_29 AC 133 ms
54,060 KB
testcase_30 AC 126 ms
54,064 KB
testcase_31 AC 132 ms
53,924 KB
testcase_32 AC 129 ms
53,904 KB
testcase_33 AC 130 ms
53,976 KB
testcase_34 AC 130 ms
53,944 KB
testcase_35 AC 130 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String aString = sc.next();
        String bString=sc.next();
        StringTokenizer aa = new StringTokenizer(aString, ".");
        StringTokenizer bb = new StringTokenizer(bString, ".");
        int a1=Integer.parseInt(aa.nextToken());
        int a2=Integer.parseInt(aa.nextToken());
        int a3=Integer.parseInt(aa.nextToken());
        int b1 = Integer.parseInt(bb.nextToken());
        int b2 = Integer.parseInt(bb.nextToken());
        int b3 = Integer.parseInt(bb.nextToken());
        if(a1<b1 ){
        	System.out.println("NO");
        	return;
        }else if(a1==b1){
        }else{
        	System.out.println("YES");
        	return;
        }
        if(a2<b2){
        	System.out.println("NO");
        	return;
        }else if(a2==b2){
        }else{
        	System.out.println("YES");
        	return;
        }
        if(a3<b3 ){
        	System.out.println("NO");
        	return;
        }else{
        	System.out.println("YES");
        	return;
        }
        
    }
}			
0