結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
34,596 KB
testcase_01 AC 287 ms
34,476 KB
testcase_02 AC 290 ms
33,924 KB
testcase_03 AC 286 ms
34,600 KB
testcase_04 AC 293 ms
34,604 KB
testcase_05 AC 310 ms
33,928 KB
testcase_06 AC 314 ms
34,476 KB
testcase_07 AC 326 ms
34,356 KB
testcase_08 AC 292 ms
34,600 KB
testcase_09 AC 293 ms
34,604 KB
testcase_10 AC 295 ms
34,052 KB
testcase_11 AC 288 ms
34,604 KB
testcase_12 AC 284 ms
34,608 KB
testcase_13 AC 290 ms
34,728 KB
testcase_14 AC 294 ms
34,180 KB
testcase_15 AC 288 ms
33,796 KB
testcase_16 AC 289 ms
34,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (243 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