結果
問題 | No.138 化石のバージョン |
ユーザー | matsuyoshi30 |
提出日時 | 2018-05-15 00:19:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 3,892 ms |
コンパイル使用メモリ | 83,140 KB |
実行使用メモリ | 41,436 KB |
最終ジャッジ日時 | 2024-06-28 11:55:01 |
合計ジャッジ時間 | 7,481 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 114 ms
39,752 KB |
testcase_04 | AC | 122 ms
41,068 KB |
testcase_05 | WA | - |
testcase_06 | AC | 128 ms
41,436 KB |
testcase_07 | AC | 129 ms
40,716 KB |
testcase_08 | AC | 126 ms
41,016 KB |
testcase_09 | AC | 122 ms
40,984 KB |
testcase_10 | AC | 121 ms
41,112 KB |
testcase_11 | AC | 115 ms
40,020 KB |
testcase_12 | AC | 124 ms
41,284 KB |
testcase_13 | AC | 122 ms
41,088 KB |
testcase_14 | AC | 124 ms
41,048 KB |
testcase_15 | AC | 122 ms
40,844 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 124 ms
41,200 KB |
testcase_21 | WA | - |
testcase_22 | AC | 127 ms
41,204 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 122 ms
40,912 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 123 ms
41,120 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 121 ms
41,240 KB |
testcase_34 | AC | 124 ms
41,384 KB |
testcase_35 | AC | 125 ms
40,852 KB |
ソースコード
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); } }