結果

問題 No.11 カードマッチ
ユーザー pocaristpocarist
提出日時 2015-09-24 17:11:26
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 842 bytes
コンパイル時間 14,014 ms
コンパイル使用メモリ 206,092 KB
実行使用メモリ 36,748 KB
最終ジャッジ日時 2024-07-19 09:00:41
合計ジャッジ時間 20,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
34,340 KB
testcase_01 AC 306 ms
33,924 KB
testcase_02 AC 301 ms
33,804 KB
testcase_03 AC 299 ms
33,672 KB
testcase_04 RE -
testcase_05 AC 304 ms
34,056 KB
testcase_06 AC 295 ms
36,748 KB
testcase_07 AC 300 ms
35,300 KB
testcase_08 AC 299 ms
35,808 KB
testcase_09 AC 293 ms
36,748 KB
testcase_10 AC 297 ms
36,492 KB
testcase_11 AC 299 ms
36,200 KB
testcase_12 AC 303 ms
36,400 KB
testcase_13 AC 307 ms
36,156 KB
testcase_14 RE -
testcase_15 WA -
testcase_16 AC 306 ms
35,116 KB
testcase_17 AC 296 ms
34,312 KB
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (402 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 #

// http://yukicoder.me/problems/30

open System

let dprintfn fmt = Printf.kprintf Diagnostics.Debug.WriteLine fmt

[<EntryPoint>]
let main argv = 
    let W = Console.ReadLine().Trim() |> int
    let H = Console.ReadLine().Trim() |> int
    let N = Console.ReadLine().Trim() |> int
    let suits = Array.create (W) false
    let nums = Array.create (H) false
    let w = ref 0
    let h = ref 0
    for i=1 to N do
        let S, K = Console.ReadLine().Trim().Split([|' '|]) |> Array.map int |> fun a -> a.[0]-1, a.[1]-1
        if suits.[S] = false then
            incr w
            suits.[S] <- true
        if nums.[K] = false then 
            incr h
            nums.[S] <- true
    let W = int64 W
    let H = int64 H
    let w = int64 !w
    let h = int64 !h
    let ans = W*H - (W - w)*(H - h) - int64 N
    printfn "%d" ans
    0
0