結果

問題 No.374 コイン
ユーザー htensaihtensai
提出日時 2020-02-05 15:12:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-09-22 13:50:57
合計ジャッジ時間 7,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,208 KB
testcase_01 AC 129 ms
54,096 KB
testcase_02 AC 131 ms
54,308 KB
testcase_03 AC 132 ms
53,912 KB
testcase_04 AC 131 ms
54,192 KB
testcase_05 AC 131 ms
54,176 KB
testcase_06 AC 128 ms
54,276 KB
testcase_07 AC 131 ms
54,092 KB
testcase_08 AC 131 ms
54,168 KB
testcase_09 AC 130 ms
54,100 KB
testcase_10 AC 133 ms
54,280 KB
testcase_11 AC 128 ms
54,272 KB
testcase_12 AC 129 ms
53,996 KB
testcase_13 AC 115 ms
52,824 KB
testcase_14 AC 130 ms
54,356 KB
testcase_15 AC 127 ms
54,296 KB
testcase_16 AC 127 ms
53,896 KB
testcase_17 AC 128 ms
54,372 KB
testcase_18 AC 128 ms
54,088 KB
testcase_19 AC 128 ms
54,268 KB
testcase_20 AC 115 ms
53,056 KB
testcase_21 AC 129 ms
54,244 KB
testcase_22 AC 129 ms
54,252 KB
testcase_23 AC 127 ms
54,192 KB
testcase_24 AC 128 ms
54,160 KB
testcase_25 AC 113 ms
53,028 KB
testcase_26 AC 129 ms
54,168 KB
testcase_27 AC 131 ms
53,912 KB
testcase_28 AC 130 ms
54,172 KB
testcase_29 AC 132 ms
54,120 KB
testcase_30 AC 129 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextLong();
        long b = sc.nextLong();
        if (a < b) {
            System.out.println("K");
        } else {
            System.out.println("S");
        }
    }
}
0