結果

問題 No.374 コイン
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-10 18:35:13
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 113 bytes
コンパイル時間 10,168 ms
コンパイル使用メモリ 430,444 KB
実行使用メモリ 56,948 KB
最終ジャッジ日時 2024-07-08 05:17:03
合計ジャッジ時間 19,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
56,788 KB
testcase_01 AC 261 ms
56,844 KB
testcase_02 AC 268 ms
56,796 KB
testcase_03 AC 265 ms
56,728 KB
testcase_04 AC 258 ms
56,720 KB
testcase_05 AC 265 ms
56,916 KB
testcase_06 AC 260 ms
56,712 KB
testcase_07 AC 256 ms
56,824 KB
testcase_08 AC 264 ms
56,812 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 270 ms
56,692 KB
testcase_13 AC 260 ms
56,704 KB
testcase_14 AC 264 ms
56,720 KB
testcase_15 AC 259 ms
56,712 KB
testcase_16 AC 260 ms
56,784 KB
testcase_17 AC 256 ms
56,816 KB
testcase_18 AC 254 ms
56,712 KB
testcase_19 AC 259 ms
56,860 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 262 ms
56,824 KB
testcase_24 AC 255 ms
56,824 KB
testcase_25 AC 256 ms
56,728 KB
testcase_26 RE -
testcase_27 AC 266 ms
56,712 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