結果

問題 No.311 z in FizzBuzzString
ユーザー くわいくわい
提出日時 2015-12-10 09:11:47
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 865 ms / 1,500 ms
コード長 227 bytes
コンパイル時間 7,221 ms
コンパイル使用メモリ 244,828 KB
実行使用メモリ 64,092 KB
最終ジャッジ日時 2024-09-25 05:47:36
合計ジャッジ時間 18,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 844 ms
63,816 KB
testcase_01 AC 849 ms
63,892 KB
testcase_02 AC 853 ms
64,032 KB
testcase_03 AC 850 ms
64,092 KB
testcase_04 AC 865 ms
63,936 KB
testcase_05 AC 853 ms
63,980 KB
testcase_06 AC 848 ms
63,804 KB
testcase_07 AC 843 ms
64,080 KB
testcase_08 AC 853 ms
64,056 KB
testcase_09 AC 855 ms
63,908 KB
testcase_10 AC 858 ms
63,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Problem311 {

  def proc(n: Long): Long = {
    n / 3 * 2 + n / 5 * 2
  }

  def main(args: Array[String]) = {
    val n = StdIn.readLong()
    val result: Long = proc(n)
    println(result)
  }
}
0