結果

問題 No.138 化石のバージョン
ユーザー 37zigen37zigen
提出日時 2016-03-11 18:13:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 55,260 KB
最終ジャッジ日時 2024-09-25 00:51:50
合計ジャッジ時間 9,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
55,040 KB
testcase_01 AC 162 ms
55,180 KB
testcase_02 WA -
testcase_03 AC 158 ms
54,968 KB
testcase_04 AC 161 ms
54,820 KB
testcase_05 AC 160 ms
54,840 KB
testcase_06 AC 160 ms
54,756 KB
testcase_07 AC 163 ms
55,104 KB
testcase_08 WA -
testcase_09 AC 163 ms
55,176 KB
testcase_10 AC 165 ms
54,948 KB
testcase_11 AC 163 ms
54,716 KB
testcase_12 AC 159 ms
55,100 KB
testcase_13 WA -
testcase_14 AC 148 ms
54,988 KB
testcase_15 WA -
testcase_16 AC 166 ms
54,940 KB
testcase_17 AC 162 ms
54,944 KB
testcase_18 AC 160 ms
54,840 KB
testcase_19 AC 158 ms
55,140 KB
testcase_20 AC 162 ms
54,804 KB
testcase_21 AC 161 ms
54,928 KB
testcase_22 AC 162 ms
54,972 KB
testcase_23 AC 163 ms
54,952 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 162 ms
55,116 KB
testcase_27 AC 163 ms
54,904 KB
testcase_28 AC 165 ms
54,864 KB
testcase_29 AC 162 ms
54,944 KB
testcase_30 AC 163 ms
54,708 KB
testcase_31 AC 163 ms
54,828 KB
testcase_32 AC 164 ms
54,836 KB
testcase_33 AC 161 ms
55,100 KB
testcase_34 AC 163 ms
55,012 KB
testcase_35 AC 162 ms
55,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Date;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		long exec_time=new Date().getTime();
		Scanner sc=new Scanner(System.in);
		String[] str1=sc.nextLine().split("\\.");
		String[] str2=sc.nextLine().split("\\.");		
		String Str1="";
		String Str2="";
		for(int i=0;i<str1.length;i++){
			Str1=str1[0]+str1[1]+str1[2];
			Str2=str2[0]+str2[1]+str2[2];
		}
		int a=Integer.parseInt(Str1);
		int b=Integer.parseInt(Str2);
		if(a>=b){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
		System.err.println(new Date().getTime()-exec_time);
	}
}
0