結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | tak |
提出日時 | 2019-02-16 17:02:09 |
言語 | F# (F# 4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 326 bytes |
コンパイル時間 | 8,539 ms |
コンパイル使用メモリ | 190,504 KB |
実行使用メモリ | 37,120 KB |
最終ジャッジ日時 | 2024-09-22 14:21:28 |
合計ジャッジ時間 | 10,173 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (232 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/
ソースコード
type Player = Black | White let simulate n k = (n - 1) % (k + 1) |> function | 0 -> White | _ -> Black let ans = let mutable cnt = 0 for i in 1 .. 1000 do let t = stdin.ReadLine().Split() |> Array.map int simulate t.[0] t.[1] |> function | Black -> cnt <- cnt + 1 | _ -> () cnt ans |> stdout.WriteLine