結果

問題 No.138 化石のバージョン
ユーザー ぴろずぴろず
提出日時 2015-01-29 23:23:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 3,227 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-12-29 12:50:28
合計ジャッジ時間 9,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

package no138;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(kaseki(sc.next()) >= kaseki(sc.next()) ? "YES" : "NO");
	}

	public static int kaseki(String s) {
		String[] t = s.split("\\.");
		int n = 0;
		for(int i=0;i<3;i++) {
			n = n * 101 + Integer.valueOf(t[i]);
		}
		return n;
	}

}
0