結果

問題 No.138 化石のバージョン
ユーザー atkrymatkrym
提出日時 2016-10-25 01:04:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-11-24 03:29:21
合計ジャッジ時間 7,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,244 KB
testcase_01 AC 120 ms
41,120 KB
testcase_02 WA -
testcase_03 AC 112 ms
40,052 KB
testcase_04 AC 111 ms
41,104 KB
testcase_05 AC 122 ms
41,140 KB
testcase_06 AC 110 ms
40,832 KB
testcase_07 AC 123 ms
41,276 KB
testcase_08 WA -
testcase_09 AC 125 ms
40,992 KB
testcase_10 AC 121 ms
41,240 KB
testcase_11 AC 111 ms
39,668 KB
testcase_12 AC 119 ms
41,176 KB
testcase_13 WA -
testcase_14 AC 119 ms
41,244 KB
testcase_15 WA -
testcase_16 AC 124 ms
41,040 KB
testcase_17 AC 107 ms
40,052 KB
testcase_18 AC 120 ms
41,260 KB
testcase_19 AC 109 ms
40,824 KB
testcase_20 AC 108 ms
41,236 KB
testcase_21 AC 104 ms
40,948 KB
testcase_22 AC 113 ms
39,620 KB
testcase_23 AC 111 ms
41,248 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 121 ms
41,024 KB
testcase_27 AC 121 ms
41,212 KB
testcase_28 AC 119 ms
41,568 KB
testcase_29 AC 119 ms
41,188 KB
testcase_30 AC 120 ms
40,800 KB
testcase_31 AC 125 ms
40,820 KB
testcase_32 AC 121 ms
41,312 KB
testcase_33 AC 111 ms
39,868 KB
testcase_34 AC 119 ms
41,136 KB
testcase_35 AC 118 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        String c = sc.next();
        
        int is = Integer.valueOf(s.replaceAll("\\.", ""));
        int ic = Integer.valueOf(c.replaceAll("\\.", ""));
        
        if (ic <= is) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0