結果

問題 No.374 コイン
ユーザー yudedakoyudedako
提出日時 2020-08-27 13:59:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 10,928 ms
コンパイル使用メモリ 424,892 KB
実行使用メモリ 51,952 KB
最終ジャッジ日時 2024-04-25 06:37:23
合計ジャッジ時間 21,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
51,636 KB
testcase_01 AC 284 ms
51,672 KB
testcase_02 AC 287 ms
51,780 KB
testcase_03 AC 284 ms
51,740 KB
testcase_04 AC 280 ms
51,536 KB
testcase_05 AC 284 ms
51,792 KB
testcase_06 AC 288 ms
51,852 KB
testcase_07 AC 281 ms
51,532 KB
testcase_08 AC 274 ms
51,648 KB
testcase_09 AC 283 ms
51,484 KB
testcase_10 AC 282 ms
51,684 KB
testcase_11 AC 287 ms
51,628 KB
testcase_12 AC 289 ms
51,672 KB
testcase_13 AC 285 ms
51,772 KB
testcase_14 AC 278 ms
51,588 KB
testcase_15 AC 279 ms
51,624 KB
testcase_16 AC 286 ms
51,656 KB
testcase_17 AC 289 ms
51,644 KB
testcase_18 AC 290 ms
51,880 KB
testcase_19 AC 281 ms
51,536 KB
testcase_20 AC 294 ms
51,532 KB
testcase_21 AC 283 ms
51,648 KB
testcase_22 AC 283 ms
51,800 KB
testcase_23 AC 281 ms
51,952 KB
testcase_24 AC 289 ms
51,664 KB
testcase_25 AC 280 ms
51,660 KB
testcase_26 AC 285 ms
51,728 KB
testcase_27 AC 277 ms
51,656 KB
testcase_28 AC 279 ms
51,872 KB
testcase_29 AC 276 ms
51,668 KB
testcase_30 AC 277 ms
51,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a, b) = readLine()!!.trim().split(' ').map(String::toLong)
    println(if (a < b) "K" else "S")
}
0