結果

問題 No.374 コイン
ユーザー GrenacheGrenache
提出日時 2016-06-08 20:17:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 358 bytes
コンパイル時間 4,567 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-11-07 22:44:06
合計ジャッジ時間 8,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,208 KB
testcase_01 AC 126 ms
41,100 KB
testcase_02 AC 128 ms
41,216 KB
testcase_03 AC 120 ms
40,004 KB
testcase_04 AC 121 ms
40,088 KB
testcase_05 AC 127 ms
41,224 KB
testcase_06 AC 128 ms
41,368 KB
testcase_07 AC 130 ms
41,208 KB
testcase_08 AC 131 ms
40,912 KB
testcase_09 AC 126 ms
41,076 KB
testcase_10 AC 129 ms
40,916 KB
testcase_11 AC 127 ms
41,116 KB
testcase_12 AC 126 ms
40,952 KB
testcase_13 AC 129 ms
41,388 KB
testcase_14 AC 138 ms
41,120 KB
testcase_15 AC 140 ms
41,224 KB
testcase_16 AC 128 ms
41,092 KB
testcase_17 AC 129 ms
41,300 KB
testcase_18 AC 128 ms
41,368 KB
testcase_19 AC 114 ms
40,064 KB
testcase_20 AC 129 ms
41,228 KB
testcase_21 AC 132 ms
41,140 KB
testcase_22 AC 114 ms
39,928 KB
testcase_23 AC 113 ms
39,848 KB
testcase_24 AC 128 ms
41,064 KB
testcase_25 AC 128 ms
40,904 KB
testcase_26 AC 131 ms
41,028 KB
testcase_27 AC 115 ms
39,996 KB
testcase_28 AC 127 ms
41,380 KB
testcase_29 AC 125 ms
41,244 KB
testcase_30 AC 126 ms
40,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder374 {

    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("S");
        } else {
        	System.out.println("K");
        }

        sc.close();
    }
}
0