結果

問題 No.374 コイン
ユーザー 👑 zeronosu77108zeronosu77108
提出日時 2021-02-10 18:35:13
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 113 bytes
コンパイル時間 14,086 ms
コンパイル使用メモリ 415,856 KB
実行使用メモリ 53,356 KB
最終ジャッジ日時 2023-09-22 13:36:34
合計ジャッジ時間 24,790 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
52,840 KB
testcase_01 AC 293 ms
52,784 KB
testcase_02 AC 285 ms
53,076 KB
testcase_03 AC 286 ms
53,208 KB
testcase_04 AC 289 ms
53,188 KB
testcase_05 AC 288 ms
52,908 KB
testcase_06 AC 289 ms
52,928 KB
testcase_07 AC 291 ms
52,940 KB
testcase_08 AC 287 ms
52,944 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 287 ms
52,832 KB
testcase_13 AC 289 ms
52,760 KB
testcase_14 AC 285 ms
52,912 KB
testcase_15 AC 286 ms
52,832 KB
testcase_16 AC 284 ms
52,864 KB
testcase_17 AC 288 ms
52,820 KB
testcase_18 AC 291 ms
53,072 KB
testcase_19 AC 287 ms
52,872 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 288 ms
53,288 KB
testcase_24 AC 287 ms
52,716 KB
testcase_25 AC 284 ms
52,924 KB
testcase_26 RE -
testcase_27 AC 282 ms
52,852 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a, b) = readLine()!!.split(" ").map { it.toInt() }

    println(if (a < b) "K" else "S")
}
0