結果
問題 | No.11 カードマッチ |
ユーザー | kuuso1 |
提出日時 | 2016-08-27 15:34:25 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 7,268 ms |
コンパイル使用メモリ | 198,664 KB |
実行使用メモリ | 35,628 KB |
最終ジャッジ日時 | 2024-11-08 19:20:21 |
合計ジャッジ時間 | 13,411 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 315 ms
34,896 KB |
testcase_01 | AC | 313 ms
35,208 KB |
testcase_02 | AC | 317 ms
35,460 KB |
testcase_03 | WA | - |
testcase_04 | AC | 319 ms
35,488 KB |
testcase_05 | AC | 320 ms
35,276 KB |
testcase_06 | WA | - |
testcase_07 | AC | 314 ms
35,524 KB |
testcase_08 | WA | - |
testcase_09 | AC | 308 ms
35,392 KB |
testcase_10 | AC | 311 ms
35,496 KB |
testcase_11 | AC | 312 ms
35,356 KB |
testcase_12 | AC | 312 ms
35,496 KB |
testcase_13 | AC | 314 ms
35,508 KB |
testcase_14 | AC | 315 ms
35,116 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (233 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/
ソースコード
open System let ri () = stdin.ReadLine() |> int let ria () = stdin.ReadLine().Split() |> Array.map int type Sol() = member this.Solve() = let W = stdin.ReadLine() |> int64 let H = stdin.ReadLine() |> int64 let N = stdin.ReadLine() |> int let mutable (L : list<int*int> ) = [] for i in 1..(int N) do let (s,k) = (ria () ) |> (fun ar -> (ar.[0], ar.[1]) ) L <- (s,k) :: L let hu = L |> List.map fst |> List.distinct |> List.length |> int64 let wu = L |> List.map snd |> List.distinct |> List.length |> int64 W*H - (W-wu)*(H-hu) - (int64 N) |> printfn "%d" let mySol = new Sol() mySol.Solve()