結果

問題 No.138 化石のバージョン
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-02-16 19:43:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 738 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 47,880 KB
最終ジャッジ日時 2024-06-23 20:46:01
合計ジャッジ時間 7,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,244 KB
testcase_01 AC 109 ms
40,224 KB
testcase_02 WA -
testcase_03 AC 123 ms
41,304 KB
testcase_04 AC 123 ms
41,492 KB
testcase_05 AC 123 ms
41,384 KB
testcase_06 AC 120 ms
41,384 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 120 ms
41,348 KB
testcase_10 AC 128 ms
41,480 KB
testcase_11 AC 123 ms
41,384 KB
testcase_12 AC 107 ms
40,264 KB
testcase_13 AC 108 ms
40,212 KB
testcase_14 AC 121 ms
41,340 KB
testcase_15 AC 121 ms
41,340 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 128 ms
41,140 KB
testcase_20 AC 124 ms
46,552 KB
testcase_21 WA -
testcase_22 AC 122 ms
41,600 KB
testcase_23 AC 120 ms
41,468 KB
testcase_24 AC 108 ms
40,160 KB
testcase_25 AC 127 ms
41,232 KB
testcase_26 AC 126 ms
41,380 KB
testcase_27 AC 124 ms
41,600 KB
testcase_28 AC 119 ms
41,452 KB
testcase_29 AC 120 ms
41,244 KB
testcase_30 AC 118 ms
41,432 KB
testcase_31 AC 111 ms
40,216 KB
testcase_32 AC 107 ms
40,288 KB
testcase_33 AC 121 ms
41,668 KB
testcase_34 AC 128 ms
41,352 KB
testcase_35 AC 121 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main
{
    private final static Main main = new Main();

    public static void main(String[] args)
    {
        long l = System.currentTimeMillis();
        main.answer();
        //System.err.println("経過時間:"+(System.currentTimeMillis() - l));
    }

    private void answer()
    {
        Scanner sc = new Scanner(System.in);
        String[] as = sc.nextLine().split("\\.");
        int a = Integer.valueOf(as[0])*100 + Integer.valueOf(as[1])*10 + Integer.valueOf(as[2]);
        String[] bs = sc.nextLine().split("\\.");
        int b = Integer.valueOf(bs[0])*100 + Integer.valueOf(bs[1])*10 + Integer.valueOf(bs[2]);
        sc.close();
        System.out.println(a>b?"YES":"NO");
    }
}
0