結果

問題 No.311 z in FizzBuzzString
ユーザー nnsniconnsnico
提出日時 2022-09-18 03:39:48
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 678 bytes
コンパイル時間 12,569 ms
コンパイル使用メモリ 434,980 KB
実行使用メモリ 56,756 KB
最終ジャッジ日時 2024-09-24 22:40:10
合計ジャッジ時間 14,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
56,744 KB
testcase_01 AC 290 ms
56,588 KB
testcase_02 AC 289 ms
56,508 KB
testcase_03 AC 287 ms
56,756 KB
testcase_04 AC 289 ms
56,524 KB
testcase_05 AC 292 ms
56,648 KB
testcase_06 AC 287 ms
56,524 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.io.PrintWriter

fun main(args: Array<String>) {
  val pw = PrintWriter(System.out)

  val n = readLine()?.toInt() ?: 0

  val result =
      (1..n)
          .toList()
          .fold(
              0,
              { acc, a ->
                when {
                  a % 3 == 0 && a % 5 == 0 -> {
                    acc + 4
                  }
                  a % 3 == 0 -> {
                    acc + 2
                  }
                  a % 5 == 0 -> {
                    acc + 2
                  }
                  else -> {
                    acc
                  }
                }
              }
          )

  pw.println(result)

  pw.flush()
}
0