結果

問題 No.138 化石のバージョン
ユーザー nCk_cvnCk_cv
提出日時 2016-01-20 19:43:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 2,687 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-12-29 13:46:47
合計ジャッジ時間 8,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,088 KB
testcase_01 AC 135 ms
41,312 KB
testcase_02 AC 125 ms
40,080 KB
testcase_03 AC 138 ms
41,580 KB
testcase_04 AC 137 ms
41,040 KB
testcase_05 AC 141 ms
41,168 KB
testcase_06 AC 138 ms
40,940 KB
testcase_07 AC 140 ms
41,320 KB
testcase_08 AC 135 ms
41,396 KB
testcase_09 AC 134 ms
41,032 KB
testcase_10 AC 138 ms
41,308 KB
testcase_11 AC 140 ms
41,108 KB
testcase_12 AC 138 ms
41,212 KB
testcase_13 AC 136 ms
41,116 KB
testcase_14 AC 140 ms
40,984 KB
testcase_15 AC 126 ms
40,144 KB
testcase_16 AC 120 ms
40,012 KB
testcase_17 AC 135 ms
40,752 KB
testcase_18 AC 141 ms
41,148 KB
testcase_19 AC 134 ms
41,140 KB
testcase_20 AC 140 ms
41,332 KB
testcase_21 AC 138 ms
41,224 KB
testcase_22 AC 138 ms
41,196 KB
testcase_23 AC 123 ms
40,112 KB
testcase_24 AC 139 ms
41,092 KB
testcase_25 AC 125 ms
40,076 KB
testcase_26 AC 129 ms
41,056 KB
testcase_27 AC 134 ms
41,152 KB
testcase_28 AC 137 ms
41,104 KB
testcase_29 AC 129 ms
40,384 KB
testcase_30 AC 138 ms
40,880 KB
testcase_31 AC 142 ms
41,352 KB
testcase_32 AC 139 ms
41,188 KB
testcase_33 AC 140 ms
41,048 KB
testcase_34 AC 141 ms
41,148 KB
testcase_35 AC 137 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] in1 = sc.next().split("\\.");
		String[] in2 = sc.next().split("\\.");
		int[] a1 = new int[3];
		int[] a2 = new int[3];
		for(int i = 0; i < 3; i++) {
			a1[i] = Integer.parseInt(in1[i]);
			a2[i] = Integer.parseInt(in2[i]);
		}
		for(int i = 0; i < 3; i++) {
			if(a1[i] > a2[i]) {
				System.out.println("YES");
				break;
			}
			if(a1[i] < a2[i]) {
				System.out.println("NO");
				break;
			}
			if(i == 2) {
				System.out.println("YES");
			}
		}
	}
 }
0