結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
41,100 KB
testcase_01 AC 86 ms
40,188 KB
testcase_02 AC 88 ms
40,408 KB
testcase_03 AC 100 ms
41,032 KB
testcase_04 AC 85 ms
39,620 KB
testcase_05 AC 108 ms
40,736 KB
testcase_06 AC 110 ms
40,848 KB
testcase_07 AC 87 ms
40,300 KB
testcase_08 AC 97 ms
40,872 KB
testcase_09 AC 97 ms
41,316 KB
testcase_10 AC 107 ms
41,136 KB
testcase_11 AC 93 ms
40,648 KB
testcase_12 WA -
testcase_13 AC 107 ms
41,060 KB
testcase_14 WA -
testcase_15 AC 96 ms
40,948 KB
testcase_16 AC 96 ms
40,824 KB
testcase_17 AC 98 ms
41,136 KB
testcase_18 AC 100 ms
40,856 KB
testcase_19 AC 112 ms
40,892 KB
testcase_20 AC 89 ms
39,764 KB
testcase_21 AC 109 ms
40,964 KB
testcase_22 AC 100 ms
41,172 KB
testcase_23 AC 106 ms
40,892 KB
testcase_24 AC 97 ms
40,764 KB
testcase_25 AC 97 ms
41,084 KB
testcase_26 AC 98 ms
40,864 KB
testcase_27 AC 106 ms
40,936 KB
testcase_28 AC 97 ms
40,840 KB
testcase_29 WA -
testcase_30 AC 99 ms
40,912 KB
testcase_31 WA -
testcase_32 AC 88 ms
40,124 KB
testcase_33 WA -
testcase_34 AC 96 ms
40,916 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main1 {
    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