結果

問題 No.138 化石のバージョン
ユーザー UTF-9UTF-9
提出日時 2015-06-02 18:26:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 75,916 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-07-06 13:44:42
合計ジャッジ時間 6,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,100 KB
testcase_01 AC 97 ms
41,144 KB
testcase_02 AC 98 ms
41,036 KB
testcase_03 AC 88 ms
40,480 KB
testcase_04 AC 98 ms
40,872 KB
testcase_05 AC 88 ms
40,220 KB
testcase_06 AC 109 ms
41,104 KB
testcase_07 AC 95 ms
41,044 KB
testcase_08 AC 87 ms
40,468 KB
testcase_09 AC 107 ms
41,088 KB
testcase_10 AC 97 ms
40,964 KB
testcase_11 AC 102 ms
41,144 KB
testcase_12 WA -
testcase_13 AC 98 ms
40,900 KB
testcase_14 WA -
testcase_15 AC 100 ms
40,980 KB
testcase_16 AC 97 ms
41,084 KB
testcase_17 AC 98 ms
40,148 KB
testcase_18 AC 100 ms
40,060 KB
testcase_19 AC 108 ms
41,184 KB
testcase_20 AC 102 ms
40,836 KB
testcase_21 AC 98 ms
40,872 KB
testcase_22 AC 99 ms
41,168 KB
testcase_23 AC 90 ms
40,440 KB
testcase_24 AC 104 ms
40,684 KB
testcase_25 AC 107 ms
40,948 KB
testcase_26 AC 108 ms
41,016 KB
testcase_27 AC 106 ms
40,904 KB
testcase_28 AC 96 ms
41,096 KB
testcase_29 WA -
testcase_30 AC 89 ms
40,276 KB
testcase_31 WA -
testcase_32 AC 84 ms
39,872 KB
testcase_33 WA -
testcase_34 AC 98 ms
40,836 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String k = in.next();
        String n = in.next();
        if (k.compareTo(n) < 0) {
            System.out.println("NO");
        } else {
            System.out.println("YES");
        }
    }
}
0