結果

問題 No.374 コイン
ユーザー yudedakoyudedako
提出日時 2020-08-27 13:59:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 13,169 ms
コンパイル使用メモリ 432,252 KB
実行使用メモリ 52,116 KB
最終ジャッジ日時 2024-11-07 16:46:32
合計ジャッジ時間 24,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
51,844 KB
testcase_01 AC 309 ms
52,116 KB
testcase_02 AC 302 ms
51,688 KB
testcase_03 AC 304 ms
51,868 KB
testcase_04 AC 310 ms
51,860 KB
testcase_05 AC 315 ms
51,664 KB
testcase_06 AC 307 ms
51,668 KB
testcase_07 AC 310 ms
51,800 KB
testcase_08 AC 306 ms
51,640 KB
testcase_09 AC 309 ms
51,596 KB
testcase_10 AC 319 ms
51,812 KB
testcase_11 AC 317 ms
51,812 KB
testcase_12 AC 318 ms
51,760 KB
testcase_13 AC 309 ms
51,676 KB
testcase_14 AC 317 ms
51,580 KB
testcase_15 AC 316 ms
51,680 KB
testcase_16 AC 312 ms
51,580 KB
testcase_17 AC 313 ms
51,720 KB
testcase_18 AC 311 ms
51,752 KB
testcase_19 AC 308 ms
51,540 KB
testcase_20 AC 310 ms
51,784 KB
testcase_21 AC 319 ms
51,840 KB
testcase_22 AC 318 ms
51,864 KB
testcase_23 AC 314 ms
51,668 KB
testcase_24 AC 315 ms
51,668 KB
testcase_25 AC 312 ms
51,684 KB
testcase_26 AC 328 ms
51,804 KB
testcase_27 AC 312 ms
51,552 KB
testcase_28 AC 313 ms
51,656 KB
testcase_29 AC 312 ms
51,880 KB
testcase_30 AC 322 ms
51,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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