結果

問題 No.542 1円玉と5円玉
ユーザー 826814741_6826814741_6
提出日時 2019-01-07 01:14:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 10,787 ms
コンパイル使用メモリ 439,348 KB
実行使用メモリ 57,280 KB
最終ジャッジ日時 2024-11-20 17:23:20
合計ジャッジ時間 15,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
56,920 KB
testcase_01 AC 286 ms
56,888 KB
testcase_02 AC 288 ms
56,876 KB
testcase_03 AC 276 ms
56,848 KB
testcase_04 AC 274 ms
56,912 KB
testcase_05 AC 301 ms
57,224 KB
testcase_06 AC 312 ms
57,080 KB
testcase_07 AC 316 ms
57,280 KB
testcase_08 AC 329 ms
57,204 KB
testcase_09 AC 314 ms
57,224 KB
testcase_10 AC 297 ms
57,124 KB
testcase_11 AC 306 ms
57,084 KB
testcase_12 AC 327 ms
57,140 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:10:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun f(m: Int, n: Int) =
    when {
        m==0 -> { for (i in 1..n) println(i*5) }
        else -> {
            for (i in 0..n) for (j in (if(i==0)1 else 0)..(if(m<5)m else 4)) println(i*5+j)
            for (i in 5..m) println(n*5+i)
        }
    }

fun main(args: Array<String>) {
    val (m,n) = readLine()!!.split(' ').map(String::toInt)
    f(m,n)
}
0