結果

問題 No.311 z in FizzBuzzString
ユーザー 簡易ログイン簡易ログイン
提出日時 2015-12-05 07:56:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 819 ms / 1,500 ms
コード長 123 bytes
コンパイル時間 7,343 ms
コンパイル使用メモリ 251,140 KB
実行使用メモリ 61,248 KB
最終ジャッジ日時 2024-09-24 21:20:59
合計ジャッジ時間 17,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 808 ms
61,076 KB
testcase_01 AC 791 ms
61,152 KB
testcase_02 AC 798 ms
61,068 KB
testcase_03 AC 804 ms
61,120 KB
testcase_04 AC 791 ms
61,156 KB
testcase_05 AC 806 ms
61,028 KB
testcase_06 AC 799 ms
60,992 KB
testcase_07 AC 819 ms
61,176 KB
testcase_08 AC 803 ms
61,248 KB
testcase_09 AC 808 ms
61,036 KB
testcase_10 AC 803 ms
61,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object No311_z_in_FizzBuzzString extends App {
val n = scala.io.StdIn.readLong
val ans = n/3*2+n/5*2
Console.println(ans)
}
0