結果

問題 No.149 碁石の移動
ユーザー regeregeregerege
提出日時 2016-06-26 19:56:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 8,440 ms
コンパイル使用メモリ 185,624 KB
実行使用メモリ 34,860 KB
最終ジャッジ日時 2024-06-06 11:58:26
合計ジャッジ時間 11,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
34,736 KB
testcase_01 AC 299 ms
33,900 KB
testcase_02 AC 290 ms
33,904 KB
testcase_03 AC 285 ms
34,204 KB
testcase_04 AC 289 ms
34,052 KB
testcase_05 AC 297 ms
34,476 KB
testcase_06 AC 295 ms
33,924 KB
testcase_07 AC 290 ms
33,800 KB
testcase_08 AC 289 ms
34,860 KB
testcase_09 AC 288 ms
33,668 KB
testcase_10 AC 286 ms
34,176 KB
testcase_11 AC 290 ms
34,048 KB
testcase_12 AC 296 ms
34,340 KB
testcase_13 AC 294 ms
34,592 KB
testcase_14 AC 300 ms
34,180 KB
testcase_15 AC 303 ms
34,048 KB
testcase_16 AC 301 ms
34,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (233 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 I() = let a = stdin.ReadLine().Split(' ') |> Array.map int in a.[0], a.[1]
let Aw,Ab = I()
let Bw,Bb = I()
let C,D = I()
let m0 = if C>=Ab then C-Ab else 0
let Bw2 = Bw+m0
let m1 = if Bw2>=D then D else Bw2
printfn "%d" (Aw-m0+m1)
0