結果

問題 No.311 z in FizzBuzzString
ユーザー 簡易ログイン簡易ログイン
提出日時 2015-12-05 08:05:23
言語 F#
(F# 4.0)
結果
AC  
実行時間 344 ms / 1,500 ms
コード長 87 bytes
コンパイル時間 6,416 ms
コンパイル使用メモリ 186,196 KB
実行使用メモリ 35,796 KB
最終ジャッジ日時 2023-10-25 02:36:29
合計ジャッジ時間 11,334 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
35,796 KB
testcase_01 AC 336 ms
35,796 KB
testcase_02 AC 336 ms
35,796 KB
testcase_03 AC 341 ms
35,788 KB
testcase_04 AC 339 ms
35,784 KB
testcase_05 AC 344 ms
35,784 KB
testcase_06 AC 338 ms
35,792 KB
testcase_07 AC 338 ms
35,796 KB
testcase_08 AC 343 ms
35,796 KB
testcase_09 AC 343 ms
35,796 KB
testcase_10 AC 344 ms
35,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (230 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.0/publish/

ソースコード

diff #

open System
let n = int64(Console.ReadLine())
let ans = n/3L*2L+n/5L*2L
printf "%d" ans
0