結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,016 KB
testcase_01 AC 118 ms
41,136 KB
testcase_02 AC 109 ms
40,408 KB
testcase_03 AC 119 ms
40,908 KB
testcase_04 AC 121 ms
41,240 KB
testcase_05 AC 123 ms
40,920 KB
testcase_06 AC 112 ms
39,840 KB
testcase_07 AC 124 ms
41,116 KB
testcase_08 AC 122 ms
40,948 KB
testcase_09 AC 101 ms
39,180 KB
testcase_10 AC 120 ms
40,972 KB
testcase_11 AC 124 ms
41,176 KB
testcase_12 AC 122 ms
41,172 KB
testcase_13 AC 123 ms
41,100 KB
testcase_14 AC 113 ms
40,288 KB
testcase_15 AC 105 ms
40,116 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 118 ms
40,832 KB
testcase_20 AC 120 ms
40,768 KB
testcase_21 WA -
testcase_22 AC 121 ms
41,348 KB
testcase_23 AC 108 ms
40,112 KB
testcase_24 AC 116 ms
40,192 KB
testcase_25 AC 122 ms
40,700 KB
testcase_26 AC 107 ms
40,188 KB
testcase_27 AC 120 ms
41,020 KB
testcase_28 AC 122 ms
40,960 KB
testcase_29 AC 121 ms
41,328 KB
testcase_30 AC 121 ms
40,828 KB
testcase_31 AC 118 ms
40,948 KB
testcase_32 AC 123 ms
41,000 KB
testcase_33 AC 123 ms
41,088 KB
testcase_34 AC 118 ms
40,952 KB
testcase_35 AC 123 ms
41,216 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;
				}
			}
		}
	}
}
0