結果

問題 No.3017 エスパー
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 19:22:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 11,382 ms
コンパイル使用メモリ 433,064 KB
実行使用メモリ 57,096 KB
最終ジャッジ日時 2024-04-30 19:27:40
合計ジャッジ時間 17,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
56,956 KB
testcase_01 AC 295 ms
56,916 KB
testcase_02 AC 297 ms
56,824 KB
testcase_03 AC 301 ms
56,912 KB
testcase_04 AC 307 ms
56,816 KB
testcase_05 AC 296 ms
56,932 KB
testcase_06 AC 296 ms
56,908 KB
testcase_07 AC 298 ms
56,864 KB
testcase_08 AC 306 ms
56,900 KB
testcase_09 AC 298 ms
56,904 KB
testcase_10 AC 293 ms
56,948 KB
testcase_11 AC 296 ms
56,844 KB
testcase_12 AC 296 ms
56,824 KB
testcase_13 AC 296 ms
56,948 KB
testcase_14 AC 308 ms
56,644 KB
testcase_15 AC 294 ms
56,692 KB
testcase_16 AC 298 ms
56,784 KB
testcase_17 AC 291 ms
57,096 KB
testcase_18 AC 298 ms
56,916 KB
testcase_19 AC 295 ms
56,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (S, K) = readLine()!!.split(" ").map { it.toInt() }

    println(S % K)
}
0