結果

問題 No.379 五円硬貨
ユーザー taktak
提出日時 2018-08-03 04:24:38
言語 F#
(F# 4.0)
結果
AC  
実行時間 322 ms / 1,000 ms
コード長 220 bytes
コンパイル時間 9,771 ms
コンパイル使用メモリ 183,664 KB
実行使用メモリ 34,884 KB
最終ジャッジ日時 2024-09-19 17:19:13
合計ジャッジ時間 15,040 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
34,604 KB
testcase_01 AC 305 ms
34,640 KB
testcase_02 AC 307 ms
34,768 KB
testcase_03 AC 300 ms
34,772 KB
testcase_04 AC 300 ms
34,884 KB
testcase_05 AC 303 ms
34,732 KB
testcase_06 AC 301 ms
33,936 KB
testcase_07 AC 307 ms
34,640 KB
testcase_08 AC 313 ms
34,640 KB
testcase_09 AC 308 ms
34,516 KB
testcase_10 AC 310 ms
34,212 KB
testcase_11 AC 309 ms
34,772 KB
testcase_12 AC 303 ms
34,764 KB
testcase_13 AC 309 ms
34,612 KB
testcase_14 AC 310 ms
34,512 KB
testcase_15 AC 322 ms
34,644 KB
testcase_16 AC 310 ms
34,744 KB
testcase_17 AC 301 ms
34,640 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (224 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 #

let N, G, V =
    let t = stdin.ReadLine().Split() |> Array.map int64
    t.[0], t.[1], t.[2]
    
let ans = 
    let coinN = N / 5L
    let gasV  = G * coinN |> decimal
    gasV / (decimal V)
    
ans |> printfn "%.12f"
0