結果

問題 No.149 碁石の移動
ユーザー kuuso1kuuso1
提出日時 2016-08-18 19:03:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 8,934 ms
コンパイル使用メモリ 198,996 KB
実行使用メモリ 34,456 KB
最終ジャッジ日時 2024-06-06 11:59:53
合計ジャッジ時間 13,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,456 KB
testcase_01 AC 339 ms
33,812 KB
testcase_02 AC 339 ms
34,192 KB
testcase_03 AC 339 ms
34,192 KB
testcase_04 AC 338 ms
34,188 KB
testcase_05 AC 343 ms
34,268 KB
testcase_06 AC 340 ms
34,184 KB
testcase_07 AC 339 ms
33,928 KB
testcase_08 AC 341 ms
34,188 KB
testcase_09 AC 337 ms
34,068 KB
testcase_10 AC 339 ms
34,048 KB
testcase_11 AC 342 ms
34,188 KB
testcase_12 AC 340 ms
34,420 KB
testcase_13 AC 340 ms
34,264 KB
testcase_14 AC 340 ms
34,244 KB
testcase_15 AC 340 ms
34,128 KB
testcase_16 AC 339 ms
33,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (294 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