結果

問題 No.32 貯金箱の憂鬱
ユーザー da_louisda_louis
提出日時 2020-02-07 00:31:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 11,074 ms
コンパイル使用メモリ 433,680 KB
実行使用メモリ 56,980 KB
最終ジャッジ日時 2024-07-23 07:51:56
合計ジャッジ時間 15,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
56,772 KB
testcase_01 AC 294 ms
56,812 KB
testcase_02 AC 295 ms
56,836 KB
testcase_03 AC 295 ms
56,692 KB
testcase_04 AC 292 ms
56,800 KB
testcase_05 AC 301 ms
56,800 KB
testcase_06 AC 301 ms
56,724 KB
testcase_07 AC 293 ms
56,784 KB
testcase_08 AC 299 ms
56,804 KB
testcase_09 AC 300 ms
56,700 KB
testcase_10 AC 292 ms
56,716 KB
testcase_11 AC 292 ms
56,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p5()
}

fun p5() {
    var (l, m, n) = (1..3).map { readLine()!!.toInt() }

    m += n / 25
    l += m / 4

    val answer = (l % 10) + (m % 4) + (n % 25)

    println(answer)
}
0