結果
| 問題 |
No.138 化石のバージョン
|
| コンテスト | |
| ユーザー |
matsuyoshi30
|
| 提出日時 | 2018-05-15 00:19:18 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 793 bytes |
| コンパイル時間 | 3,892 ms |
| コンパイル使用メモリ | 83,140 KB |
| 実行使用メモリ | 41,436 KB |
| 最終ジャッジ日時 | 2024-06-28 11:55:01 |
| 合計ジャッジ時間 | 7,481 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 17 WA * 16 |
ソースコード
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String[] v1 = in.next().split("\\.");
String[] v2 = in.next().split("\\.");
String ans = "";
int[] k = new int[3];
int[] t = new int[3];
for(int i = 0; i < 3; i++) {
k[i] = Integer.parseInt(v1[i]);
t[i] = Integer.parseInt(v2[i]);
}
if(k[0] > t[0]) {
ans = "YES";
} else {
if(k[1] > t[1]) {
ans = "YES";
} else {
if(k[2] > t[2]) {
ans = "YES";
} else {
ans = "NO";
}
}
}
System.out.println(ans);
}
}
matsuyoshi30