結果

問題 No.598 オーバーフローファンタジー
ユーザー taktak
提出日時 2018-06-19 16:35:56
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 9,323 ms
コンパイル使用メモリ 184,416 KB
実行使用メモリ 34,928 KB
最終ジャッジ日時 2024-06-30 17:16:00
合計ジャッジ時間 18,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (313 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 #

// ----   / ̄ ̄ ̄ ̄ ̄ ̄ ̄/
//-+--+- /  maybe AC. /
// |  | ∠____________/

let f n x a b =
    let minOverFlow = pown 2L (n - 1)
    let zero        = 0L    
    let calStep diff y =
        match diff % y with
        | 0L -> diff / y
        | _  -> diff / y + 1L    
    let attackStep = calStep (x - zero)        a
    let healStep   = calStep (minOverFlow - x) b
    min attackStep healStep     

let R () = stdin.ReadLine ()

let N = R () |> int
let X = R () |> int64
let A = R () |> int64
let B = R () |> int64

f N X A B |> printfn "%i"
0