結果

問題 No.149 碁石の移動
ユーザー kuuso1kuuso1
提出日時 2016-08-18 19:03:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 6,427 ms
コンパイル使用メモリ 200,864 KB
実行使用メモリ 34,556 KB
最終ジャッジ日時 2024-12-24 03:19:52
合計ジャッジ時間 12,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
34,060 KB
testcase_01 AC 313 ms
34,556 KB
testcase_02 AC 308 ms
34,400 KB
testcase_03 AC 340 ms
33,928 KB
testcase_04 AC 362 ms
34,544 KB
testcase_05 AC 318 ms
34,316 KB
testcase_06 AC 312 ms
34,140 KB
testcase_07 AC 315 ms
34,016 KB
testcase_08 AC 312 ms
34,016 KB
testcase_09 AC 314 ms
34,188 KB
testcase_10 AC 309 ms
33,804 KB
testcase_11 AC 312 ms
34,556 KB
testcase_12 AC 311 ms
33,940 KB
testcase_13 AC 306 ms
34,072 KB
testcase_14 AC 314 ms
34,372 KB
testcase_15 AC 313 ms
34,192 KB
testcase_16 AC 310 ms
34,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (216 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(6,13): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System
type Sol() =
    member this.Solve() = 
        let A = stdin.ReadLine().Split() |> Array.map int
        let B = stdin.ReadLine().Split() |> Array.map int
        let [|C;D|] = stdin.ReadLine().Split() |> Array.map int
        
        let rmB = if C > A.[1] then A.[1] else C
        let rmW = (C - rmB)
        A.[0] <- A.[0] - rmW
        A.[1] <- A.[1] - rmB
        B.[0] <- B.[0] + rmW
        B.[1] <- B.[1] + rmB
        
        let rmW = if D > B.[0] then B.[0] else D
        let rmB = (D - rmW)
        B.[0] <- B.[0] - rmW
        B.[1] <- B.[1] - rmB
        A.[0] <- A.[0] + rmW
        A.[1] <- A.[1] + rmB
        
        printfn "%d" A.[0]
        
let mySol = new Sol()
mySol.Solve()
0