結果

問題 No.311 z in FizzBuzzString
ユーザー nnsniconnsnico
提出日時 2022-09-18 03:55:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 1,500 ms
コード長 205 bytes
コンパイル時間 10,468 ms
コンパイル使用メモリ 423,344 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-09-24 22:39:36
合計ジャッジ時間 14,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
54,292 KB
testcase_01 AC 274 ms
54,132 KB
testcase_02 AC 277 ms
54,404 KB
testcase_03 AC 276 ms
53,992 KB
testcase_04 AC 276 ms
54,420 KB
testcase_05 AC 276 ms
54,060 KB
testcase_06 AC 280 ms
53,916 KB
testcase_07 AC 284 ms
54,196 KB
testcase_08 AC 277 ms
54,080 KB
testcase_09 AC 278 ms
54,296 KB
testcase_10 AC 281 ms
54,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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()?.toLong() ?: 0

  val result = (n / 3 + n / 5) * 2

  pw.println(result)

  pw.flush()
}
0