結果

問題 No.3017 エスパー
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 19:22:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 9,999 ms
コンパイル使用メモリ 433,684 KB
実行使用メモリ 51,908 KB
最終ジャッジ日時 2024-11-20 17:00:55
合計ジャッジ時間 17,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
51,472 KB
testcase_01 AC 296 ms
51,744 KB
testcase_02 AC 300 ms
51,908 KB
testcase_03 AC 302 ms
51,780 KB
testcase_04 AC 321 ms
51,576 KB
testcase_05 AC 298 ms
51,904 KB
testcase_06 AC 298 ms
51,488 KB
testcase_07 AC 299 ms
51,620 KB
testcase_08 AC 293 ms
51,604 KB
testcase_09 AC 290 ms
51,776 KB
testcase_10 AC 304 ms
51,904 KB
testcase_11 AC 300 ms
51,660 KB
testcase_12 AC 292 ms
51,860 KB
testcase_13 AC 278 ms
51,540 KB
testcase_14 AC 276 ms
51,572 KB
testcase_15 AC 282 ms
51,828 KB
testcase_16 AC 289 ms
51,892 KB
testcase_17 AC 295 ms
51,824 KB
testcase_18 AC 290 ms
51,856 KB
testcase_19 AC 294 ms
51,768 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