結果

問題 No.138 化石のバージョン
ユーザー suiginginsuigingin
提出日時 2015-01-29 23:50:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,418 bytes
コンパイル時間 2,749 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 55,968 KB
最終ジャッジ日時 2023-09-05 08:09:39
合計ジャッジ時間 9,075 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,860 KB
testcase_01 AC 126 ms
55,864 KB
testcase_02 AC 126 ms
55,756 KB
testcase_03 WA -
testcase_04 AC 123 ms
55,580 KB
testcase_05 AC 125 ms
55,740 KB
testcase_06 AC 123 ms
55,620 KB
testcase_07 AC 124 ms
55,672 KB
testcase_08 AC 123 ms
55,376 KB
testcase_09 AC 123 ms
55,564 KB
testcase_10 AC 124 ms
55,592 KB
testcase_11 AC 129 ms
55,892 KB
testcase_12 AC 123 ms
55,644 KB
testcase_13 AC 126 ms
55,580 KB
testcase_14 AC 123 ms
55,692 KB
testcase_15 AC 122 ms
55,600 KB
testcase_16 WA -
testcase_17 AC 125 ms
55,968 KB
testcase_18 AC 123 ms
55,344 KB
testcase_19 AC 124 ms
55,768 KB
testcase_20 WA -
testcase_21 AC 123 ms
55,572 KB
testcase_22 AC 121 ms
55,564 KB
testcase_23 AC 124 ms
55,776 KB
testcase_24 AC 124 ms
55,744 KB
testcase_25 AC 121 ms
55,712 KB
testcase_26 AC 122 ms
55,804 KB
testcase_27 AC 120 ms
55,680 KB
testcase_28 AC 121 ms
55,612 KB
testcase_29 AC 124 ms
53,592 KB
testcase_30 AC 123 ms
55,624 KB
testcase_31 AC 122 ms
55,556 KB
testcase_32 AC 124 ms
55,372 KB
testcase_33 AC 123 ms
55,680 KB
testcase_34 AC 123 ms
55,724 KB
testcase_35 AC 123 ms
55,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	MyScanner sc = new MyScanner();
	Scanner sc2 = new Scanner(System.in);
	final int MOD = 1000000007;
	int[] dx = { 1, 0, 0, -1 };
	int[] dy = { 0, 1, -1, 0 };

	void run() {
		String[] in1 = sc.next().split("\\.");
		String[] in2 = sc.next().split("\\.");
		int a1 = Integer.valueOf(in1[0]);
		int b1 = Integer.valueOf(in1[1]);
		int c1 = Integer.valueOf(in1[2]);
		int a2 = Integer.valueOf(in2[0]);
		int b2 = Integer.valueOf(in2[1]);
		int c2 = Integer.valueOf(in2[1]);
		boolean ok = false;
		if (a2 > a1) {
			ok = true;
		} else if (a2 == a1) {
			if (b2 > b1) {
				ok = true;
			} else if (b2 == b1) {
				if (c2 > c1) {
					ok = true;
				}
			}
		}
		System.out.println(ok ? "NO" : "YES");
	}

	public static void main(String[] args) {
		new Main().run();
	}

	void debug(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}

	void debug2(int[][] array) {
		for (int i = 0; i < array.length; i++) {
			for (int j = 0; j < array[i].length; j++) {
				System.out.print(array[i][j]);
			}
			System.out.println();
		}
	}

	boolean inner(int h, int w, int limH, int limW) {
		return 0 <= h && h < limH && 0 <= w && w < limW;
	}

	void swap(int[] x, int a, int b) {
		int tmp = x[a];
		x[a] = x[b];
		x[b] = tmp;
	}

	// find minimum i (a[i] >= border)
	int lower_bound(int a[], int border) {
		int l = -1;
		int r = a.length;

		while (r - l > 1) {
			int mid = (l + r) / 2;
			if (border <= a[mid]) {
				r = mid;
			} else {
				l = mid;
			}
		}
		// r = l + 1
		return r;
	}

	boolean palindrome(String s) {
		for (int i = 0; i < s.length() / 2; i++) {
			if (s.charAt(i) != s.charAt(s.length() - 1 - i)) {
				return false;
			}
		}
		return true;
	}

	class MyScanner {
		int nextInt() {
			try {
				int c = System.in.read();
				while (c != '-' && (c < '0' || '9' < c))
					c = System.in.read();
				if (c == '-')
					return -nextInt();
				int res = 0;
				do {
					res *= 10;
					res += c - '0';
					c = System.in.read();
				} while ('0' <= c && c <= '9');
				return res;
			} catch (Exception e) {
				return -1;
			}
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		String next() {
			try {
				StringBuilder res = new StringBuilder("");
				int c = System.in.read();
				while (Character.isWhitespace(c))
					c = System.in.read();
				do {
					res.append((char) c);
				} while (!Character.isWhitespace(c = System.in.read()));
				return res.toString();
			} catch (Exception e) {
				return null;
			}
		}

		int[] nextIntArray(int n) {
			int[] in = new int[n];
			for (int i = 0; i < n; i++) {
				in[i] = nextInt();
			}
			return in;
		}

		int[][] nextInt2dArray(int n, int m) {
			int[][] in = new int[n][m];
			for (int i = 0; i < n; i++) {
				in[i] = nextIntArray(m);
			}
			return in;
		}

		double[] nextDoubleArray(int n) {
			double[] in = new double[n];
			for (int i = 0; i < n; i++) {
				in[i] = nextDouble();
			}
			return in;
		}

		long[] nextLongArray(int n) {
			long[] in = new long[n];
			for (int i = 0; i < n; i++) {
				in[i] = nextLong();
			}
			return in;
		}

		char[][] nextCharField(int n, int m) {
			char[][] in = new char[n][m];
			for (int i = 0; i < n; i++) {
				String s = sc.next();
				for (int j = 0; j < m; j++) {
					in[i][j] = s.charAt(j);
				}
			}
			return in;
		}
	}
}
0