結果

問題 No.138 化石のバージョン
ユーザー kou6839kou6839
提出日時 2015-01-30 22:44:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,169 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-06-09 08:32:48
合計ジャッジ時間 8,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,944 KB
testcase_01 AC 120 ms
53,980 KB
testcase_02 AC 120 ms
54,056 KB
testcase_03 AC 119 ms
53,656 KB
testcase_04 AC 122 ms
53,692 KB
testcase_05 AC 129 ms
54,172 KB
testcase_06 AC 123 ms
53,840 KB
testcase_07 AC 119 ms
54,108 KB
testcase_08 AC 118 ms
54,012 KB
testcase_09 AC 121 ms
53,968 KB
testcase_10 AC 125 ms
53,992 KB
testcase_11 AC 131 ms
53,948 KB
testcase_12 AC 127 ms
53,908 KB
testcase_13 AC 115 ms
52,972 KB
testcase_14 AC 130 ms
54,116 KB
testcase_15 AC 132 ms
53,668 KB
testcase_16 AC 129 ms
54,104 KB
testcase_17 AC 121 ms
53,864 KB
testcase_18 AC 122 ms
54,128 KB
testcase_19 AC 130 ms
53,640 KB
testcase_20 AC 131 ms
54,004 KB
testcase_21 AC 125 ms
54,084 KB
testcase_22 AC 126 ms
53,984 KB
testcase_23 AC 124 ms
53,752 KB
testcase_24 AC 127 ms
53,648 KB
testcase_25 AC 120 ms
54,012 KB
testcase_26 AC 129 ms
53,728 KB
testcase_27 AC 122 ms
53,968 KB
testcase_28 AC 124 ms
53,880 KB
testcase_29 AC 119 ms
53,876 KB
testcase_30 AC 121 ms
53,736 KB
testcase_31 AC 127 ms
54,056 KB
testcase_32 AC 123 ms
54,140 KB
testcase_33 AC 126 ms
54,104 KB
testcase_34 AC 113 ms
52,828 KB
testcase_35 AC 119 ms
52,916 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