結果

問題 No.311 z in FizzBuzzString
ユーザー hum_ophum_op
提出日時 2016-02-12 21:51:48
言語 F#
(F# 4.0)
結果
AC  
実行時間 321 ms / 1,500 ms
コード長 216 bytes
コンパイル時間 7,559 ms
コンパイル使用メモリ 194,780 KB
実行使用メモリ 35,972 KB
最終ジャッジ日時 2024-09-24 21:34:55
合計ジャッジ時間 11,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
35,712 KB
testcase_01 AC 319 ms
35,756 KB
testcase_02 AC 319 ms
35,972 KB
testcase_03 AC 320 ms
35,848 KB
testcase_04 AC 312 ms
35,844 KB
testcase_05 AC 309 ms
35,848 KB
testcase_06 AC 315 ms
35,552 KB
testcase_07 AC 319 ms
35,972 KB
testcase_08 AC 316 ms
35,880 KB
testcase_09 AC 321 ms
35,680 KB
testcase_10 AC 315 ms
35,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (265 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
    
[<EntryPoint>]
let main args =    
    let s = Console.ReadLine().Split(' ');
    let N = Int64.Parse(s.[0])
    
    let z = 2L * (N / 5L + N / 3L - N / 15L) + N / 15L * 2L 
    printfn "%d" z
    0
0