結果

問題 No.604 誕生日のお小遣い
ユーザー 826814741_6826814741_6
提出日時 2019-01-07 12:20:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 315 ms / 1,000 ms
コード長 296 bytes
コンパイル時間 12,654 ms
コンパイル使用メモリ 437,212 KB
実行使用メモリ 56,912 KB
最終ジャッジ日時 2024-11-21 19:28:30
合計ジャッジ時間 21,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
56,700 KB
testcase_01 AC 299 ms
56,816 KB
testcase_02 AC 302 ms
56,740 KB
testcase_03 AC 306 ms
56,892 KB
testcase_04 AC 308 ms
56,632 KB
testcase_05 AC 301 ms
56,708 KB
testcase_06 AC 305 ms
56,888 KB
testcase_07 AC 307 ms
56,584 KB
testcase_08 AC 298 ms
56,912 KB
testcase_09 AC 301 ms
56,692 KB
testcase_10 AC 309 ms
56,712 KB
testcase_11 AC 306 ms
56,588 KB
testcase_12 AC 304 ms
56,804 KB
testcase_13 AC 312 ms
56,720 KB
testcase_14 AC 305 ms
56,644 KB
testcase_15 AC 306 ms
56,592 KB
testcase_16 AC 309 ms
56,892 KB
testcase_17 AC 302 ms
56,748 KB
testcase_18 AC 303 ms
56,628 KB
testcase_19 AC 310 ms
56,520 KB
testcase_20 AC 315 ms
56,612 KB
testcase_21 AC 310 ms
56,764 KB
testcase_22 AC 305 ms
56,688 KB
testcase_23 AC 305 ms
56,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:10:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun f(a: Long, b: Long, c: Long): Long =
    when {
        a<=c -> {
            val d = a.dec()+b
            c/d*a + (if (c%d<a) c%d else a)
        }
        else -> c
    }

fun main(args: Array<String>) {
    val (a,b,c) = readLine()!!.split(' ').map(String::toLong)
    println(f(a,b,c))
}
0