結果

問題 No.138 化石のバージョン
ユーザー mits58mits58
提出日時 2016-07-02 16:36:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 439 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-10-12 00:57:29
合計ジャッジ時間 7,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,264 KB
testcase_01 AC 119 ms
41,268 KB
testcase_02 AC 119 ms
41,152 KB
testcase_03 AC 108 ms
39,848 KB
testcase_04 AC 120 ms
41,004 KB
testcase_05 AC 104 ms
39,832 KB
testcase_06 AC 119 ms
40,852 KB
testcase_07 AC 118 ms
40,888 KB
testcase_08 AC 121 ms
41,428 KB
testcase_09 AC 122 ms
41,608 KB
testcase_10 AC 120 ms
40,876 KB
testcase_11 AC 105 ms
39,960 KB
testcase_12 WA -
testcase_13 AC 105 ms
39,888 KB
testcase_14 WA -
testcase_15 AC 112 ms
40,256 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 120 ms
41,256 KB
testcase_20 AC 119 ms
41,072 KB
testcase_21 WA -
testcase_22 AC 101 ms
39,720 KB
testcase_23 AC 121 ms
40,928 KB
testcase_24 AC 119 ms
40,928 KB
testcase_25 AC 112 ms
40,176 KB
testcase_26 AC 123 ms
41,168 KB
testcase_27 AC 121 ms
41,132 KB
testcase_28 AC 126 ms
40,888 KB
testcase_29 WA -
testcase_30 AC 112 ms
41,388 KB
testcase_31 WA -
testcase_32 AC 108 ms
39,960 KB
testcase_33 WA -
testcase_34 AC 122 ms
41,204 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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++){
				if(s0[i].compareTo(s1[i])<0){
					System.out.println("NO");
					break;
				}
				else if(s0[i].compareTo(s1[i])>0){
					System.out.println("YES");
					break;
				}
			}
		}
	}
}
0