結果

問題 No.112 ややこしい鶴亀算
ユーザー taktak
提出日時 2018-05-20 17:51:09
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 11,805 ms
コンパイル使用メモリ 190,336 KB
実行使用メモリ 37,196 KB
最終ジャッジ日時 2024-06-28 14:44:12
合計ジャッジ時間 21,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,884 KB
testcase_01 AC 335 ms
35,616 KB
testcase_02 AC 341 ms
34,744 KB
testcase_03 AC 343 ms
34,752 KB
testcase_04 AC 336 ms
35,520 KB
testcase_05 AC 333 ms
35,240 KB
testcase_06 WA -
testcase_07 AC 341 ms
34,624 KB
testcase_08 AC 344 ms
35,492 KB
testcase_09 AC 341 ms
35,260 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 346 ms
34,764 KB
testcase_13 AC 338 ms
35,512 KB
testcase_14 AC 341 ms
35,384 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 344 ms
35,536 KB
testcase_19 AC 339 ms
35,512 KB
testcase_20 AC 340 ms
35,524 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 342 ms
34,508 KB
testcase_24 AC 328 ms
35,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (253 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 #

let (|Turtle|Crane|) = function | 4 -> Turtle | _ -> Crane    

let N = stdin.ReadLine() |> int
let a = stdin.ReadLine().Split() |> Array.map int

let cnts = a 
           |> Array.groupBy(fun x -> x)
           |> Array.map(fun (k,_) -> k)
let gt,lt = (cnts |> Array.max,cnts |> Array.min)
if gt = lt then
    match gt/(N-1) with
        | Turtle -> (0,N)
        | Crane  -> (N,0)
else
    cnts
    |> Array.map(fun x -> x = gt)
    |> (fun x ->
        let crane = x 
                    |> Array.where(fun x -> x) 
                    |> Array.length
        let turtle = N - crane
        (crane,turtle))
|> (fun (c,t) -> printfn "%i %i" c t)
0