結果

問題 No.598 オーバーフローファンタジー
ユーザー taktak
提出日時 2018-06-19 16:33:49
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 521 bytes
コンパイル時間 9,650 ms
コンパイル使用メモリ 189,312 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-06-30 17:15:37
合計ジャッジ時間 21,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
33,980 KB
testcase_01 AC 323 ms
34,668 KB
testcase_02 AC 322 ms
34,620 KB
testcase_03 AC 318 ms
34,660 KB
testcase_04 AC 316 ms
34,544 KB
testcase_05 AC 324 ms
34,788 KB
testcase_06 AC 331 ms
34,396 KB
testcase_07 AC 328 ms
34,668 KB
testcase_08 AC 334 ms
34,792 KB
testcase_09 AC 304 ms
34,668 KB
testcase_10 AC 310 ms
34,524 KB
testcase_11 AC 310 ms
34,796 KB
testcase_12 AC 313 ms
34,412 KB
testcase_13 RE -
testcase_14 AC 314 ms
34,412 KB
testcase_15 AC 320 ms
34,412 KB
testcase_16 AC 315 ms
34,404 KB
testcase_17 AC 319 ms
34,524 KB
testcase_18 AC 310 ms
34,532 KB
testcase_19 AC 316 ms
34,532 KB
testcase_20 AC 311 ms
34,800 KB
testcase_21 AC 314 ms
34,532 KB
testcase_22 AC 312 ms
34,660 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 314 ms
34,648 KB
testcase_26 AC 318 ms
34,792 KB
testcase_27 AC 318 ms
34,544 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (235 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 2 (n - 1)
    let zero        = 0    
    let calStep diff y =
        match diff % y with
        | 0 -> diff / y
        | _ -> diff / y + 1    
    let attackStep = calStep (x - zero)        a
    let healStep   = calStep (minOverFlow - x) b
    min attackStep healStep     

let R () = stdin.ReadLine () |> int

let N = R ()
let X = R ()
let A = R ()
let B = R ()

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