結果

問題 No.138 化石のバージョン
ユーザー YamaKasaYamaKasa
提出日時 2018-04-25 23:29:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-06-27 21:06:39
合計ジャッジ時間 8,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,380 KB
testcase_01 AC 124 ms
41,528 KB
testcase_02 AC 135 ms
41,340 KB
testcase_03 AC 134 ms
41,576 KB
testcase_04 AC 134 ms
41,232 KB
testcase_05 AC 136 ms
41,404 KB
testcase_06 AC 137 ms
41,552 KB
testcase_07 AC 135 ms
41,228 KB
testcase_08 AC 136 ms
41,656 KB
testcase_09 AC 135 ms
41,640 KB
testcase_10 AC 136 ms
41,436 KB
testcase_11 AC 133 ms
41,424 KB
testcase_12 AC 135 ms
41,508 KB
testcase_13 AC 134 ms
41,400 KB
testcase_14 AC 135 ms
41,552 KB
testcase_15 AC 133 ms
41,756 KB
testcase_16 AC 130 ms
40,816 KB
testcase_17 AC 128 ms
41,164 KB
testcase_18 AC 127 ms
41,252 KB
testcase_19 AC 134 ms
41,492 KB
testcase_20 AC 135 ms
41,128 KB
testcase_21 AC 124 ms
40,852 KB
testcase_22 AC 133 ms
41,656 KB
testcase_23 AC 136 ms
41,636 KB
testcase_24 AC 134 ms
41,128 KB
testcase_25 AC 135 ms
41,376 KB
testcase_26 AC 136 ms
41,452 KB
testcase_27 AC 134 ms
41,568 KB
testcase_28 AC 136 ms
41,416 KB
testcase_29 AC 135 ms
41,580 KB
testcase_30 AC 135 ms
41,416 KB
testcase_31 AC 135 ms
41,488 KB
testcase_32 AC 134 ms
41,380 KB
testcase_33 AC 133 ms
41,456 KB
testcase_34 AC 136 ms
41,500 KB
testcase_35 AC 135 ms
41,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s1 = scan.next();
		String s2 = scan.next();
		scan.close();
		String []str1 = s1.split("[.]");
		String []str2 = s2.split("[.]");

		for(int i = 0; i < str1.length; i++) {
			int k1 = Integer.parseInt(str1[i]);
			int k2 = Integer.parseInt(str2[i]);
			if(k1 > k2) {
				System.out.println("YES");
				System.exit(0);
			}else if(k1 < k2){
				System.out.println("NO");
				System.exit(0);
			}
		}
		System.out.println("YES");
	}
}
0