結果

問題 No.138 化石のバージョン
ユーザー nCk_cvnCk_cv
提出日時 2016-01-20 19:43:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 78,700 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-06-09 08:53:27
合計ジャッジ時間 7,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,240 KB
testcase_01 AC 127 ms
41,036 KB
testcase_02 AC 117 ms
40,780 KB
testcase_03 AC 128 ms
41,304 KB
testcase_04 AC 124 ms
41,344 KB
testcase_05 AC 123 ms
41,140 KB
testcase_06 AC 127 ms
41,300 KB
testcase_07 AC 122 ms
41,020 KB
testcase_08 AC 125 ms
41,484 KB
testcase_09 AC 115 ms
40,032 KB
testcase_10 AC 127 ms
41,184 KB
testcase_11 AC 128 ms
41,056 KB
testcase_12 AC 129 ms
41,212 KB
testcase_13 AC 129 ms
41,236 KB
testcase_14 AC 127 ms
41,112 KB
testcase_15 AC 126 ms
41,380 KB
testcase_16 AC 124 ms
41,000 KB
testcase_17 AC 125 ms
41,552 KB
testcase_18 AC 125 ms
41,116 KB
testcase_19 AC 126 ms
41,136 KB
testcase_20 AC 133 ms
41,496 KB
testcase_21 AC 123 ms
41,104 KB
testcase_22 AC 127 ms
41,044 KB
testcase_23 AC 115 ms
40,640 KB
testcase_24 AC 125 ms
41,480 KB
testcase_25 AC 124 ms
41,388 KB
testcase_26 AC 123 ms
41,380 KB
testcase_27 AC 127 ms
41,020 KB
testcase_28 AC 127 ms
41,232 KB
testcase_29 AC 128 ms
41,344 KB
testcase_30 AC 126 ms
41,280 KB
testcase_31 AC 127 ms
41,240 KB
testcase_32 AC 113 ms
40,268 KB
testcase_33 AC 127 ms
41,312 KB
testcase_34 AC 128 ms
41,152 KB
testcase_35 AC 128 ms
41,436 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