結果
| 問題 |
No.138 化石のバージョン
|
| コンテスト | |
| ユーザー |
maru
|
| 提出日時 | 2016-03-23 12:15:52 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 943 bytes |
| コンパイル時間 | 3,324 ms |
| コンパイル使用メモリ | 78,020 KB |
| 実行使用メモリ | 54,156 KB |
| 最終ジャッジ日時 | 2024-10-01 19:28:06 |
| 合計ジャッジ時間 | 8,133 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 4 |
ソースコード
import java.util.Scanner;
public class yukicoder_138 {
public static void main(String[] args) {
Scanner stdIn = new Scanner(System.in);
String a = stdIn.nextLine();
String b = stdIn.nextLine();
String[] a_str = a.split("\\.");
String[] b_str = b.split("\\.");
int[] a_number = new int[a_str.length];
int[] b_number = new int[b_str.length];
for (int i = 0; i < a_str.length; i++) {
a_number[i] = Integer.parseInt(a_str[i]);
b_number[i] = Integer.parseInt(b_str[i]);
}
if (a_number[0] > b_number[0]) {
System.out.println("YES");
} else if (a_number[0] == b_number[0]) {
if (a_number[1] > b_number[1]) {
System.out.println("YES");
} else if (a_number[1] == b_number[1]) {
if (a_number[2] > b_number[2]) {
System.out.println("YES");
} else {
System.out.println("NO");
}
} else {
System.out.println("NO");
}
} else {
System.out.println("NO");
}
}
}
maru