結果

問題 No.374 コイン
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-04 04:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 318 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-05-05 19:14:50
合計ジャッジ時間 6,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,032 KB
testcase_01 AC 121 ms
41,272 KB
testcase_02 AC 98 ms
39,608 KB
testcase_03 AC 114 ms
41,232 KB
testcase_04 AC 110 ms
41,084 KB
testcase_05 AC 101 ms
40,156 KB
testcase_06 AC 108 ms
40,892 KB
testcase_07 AC 97 ms
40,076 KB
testcase_08 AC 108 ms
40,820 KB
testcase_09 AC 100 ms
40,052 KB
testcase_10 AC 110 ms
41,128 KB
testcase_11 AC 106 ms
40,084 KB
testcase_12 AC 108 ms
40,216 KB
testcase_13 AC 115 ms
40,868 KB
testcase_14 AC 108 ms
40,888 KB
testcase_15 AC 101 ms
39,908 KB
testcase_16 AC 109 ms
41,128 KB
testcase_17 AC 94 ms
39,772 KB
testcase_18 AC 114 ms
41,380 KB
testcase_19 AC 112 ms
41,484 KB
testcase_20 AC 103 ms
40,128 KB
testcase_21 AC 108 ms
41,248 KB
testcase_22 AC 98 ms
40,088 KB
testcase_23 AC 115 ms
41,156 KB
testcase_24 AC 112 ms
41,324 KB
testcase_25 AC 119 ms
41,248 KB
testcase_26 AC 102 ms
40,224 KB
testcase_27 AC 115 ms
41,064 KB
testcase_28 AC 117 ms
41,072 KB
testcase_29 AC 108 ms
41,156 KB
testcase_30 AC 108 ms
41,264 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