結果

問題 No.678 2Dシューティングゲームの必殺ビーム
ユーザー taktak
提出日時 2018-05-01 06:16:46
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 12,471 ms
コンパイル使用メモリ 193,756 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-06-28 00:02:12
合計ジャッジ時間 17,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,604 KB
testcase_01 AC 339 ms
34,600 KB
testcase_02 WA -
testcase_03 AC 341 ms
34,320 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 344 ms
35,040 KB
testcase_15 WA -
testcase_16 AC 340 ms
34,316 KB
testcase_17 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (598 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 #

module Program

let read() = stdin.ReadLine().Split() |> Array.map int
let XL(x, _, _, _) = x
let YU(_, x, _, _) = x
let XR(_, _, x, _) = x
let YD(_, _, _, x) = x
let width, height = 1280 + 500, 1680 + 500

let N, xLB, xRB = 
    let t = read()
    t.[0], t.[1] + 500, t.[2] + 500

let info = 
    Array.init N (fun _ -> 
        let t = read() |> Array.map ((+) 500)
        (t.[0], t.[1], t.[2], t.[3]))

let front = Array.zeroCreate (width + 1)

for t in info do
    let YD = YD t
    for idx in (XL t)..(XR t) do
        front.[idx] <- max front.[idx] YD
for t in info do
    let YD = YD t
    front.[(XL t)..(XR t)]
    |> Array.exists ((=) YD)
    |> function 
    | true -> 1
    | _ -> 0
    |> printfn "%i"
0