結果

問題 No.112 ややこしい鶴亀算
ユーザー taktak
提出日時 2018-05-20 18:08:34
言語 F#
(F# 4.0)
結果
AC  
実行時間 354 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 6,616 ms
コンパイル使用メモリ 184,632 KB
実行使用メモリ 34,892 KB
最終ジャッジ日時 2024-06-28 14:44:40
合計ジャッジ時間 16,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
34,116 KB
testcase_01 AC 346 ms
34,736 KB
testcase_02 AC 349 ms
33,952 KB
testcase_03 AC 341 ms
34,004 KB
testcase_04 AC 339 ms
34,352 KB
testcase_05 AC 334 ms
34,744 KB
testcase_06 AC 335 ms
33,852 KB
testcase_07 AC 339 ms
34,648 KB
testcase_08 AC 341 ms
34,200 KB
testcase_09 AC 337 ms
34,892 KB
testcase_10 AC 338 ms
34,476 KB
testcase_11 AC 341 ms
33,868 KB
testcase_12 AC 342 ms
34,516 KB
testcase_13 AC 340 ms
34,868 KB
testcase_14 AC 338 ms
34,756 KB
testcase_15 AC 339 ms
34,596 KB
testcase_16 AC 337 ms
34,588 KB
testcase_17 AC 343 ms
34,468 KB
testcase_18 AC 341 ms
34,456 KB
testcase_19 AC 337 ms
34,480 KB
testcase_20 AC 339 ms
34,500 KB
testcase_21 AC 336 ms
34,336 KB
testcase_22 AC 338 ms
34,340 KB
testcase_23 AC 342 ms
34,212 KB
testcase_24 AC 341 ms
33,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (228 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 fstValue = a.[0]
if a |> Array.forall(fun x -> x = fstValue) then
    let cnt = a |> Array.length
    match fstValue/(N-1) with
    | Turtle -> (0,cnt)
    | Crane  -> (cnt,0)
else
    let isCraneCnt = a |> Array.max
    let craneCnt = a
                   |> Array.where(fun x -> x=isCraneCnt)
                   |> Array.length
    let turtleCnt = N - craneCnt                   
    (craneCnt,turtleCnt)
|> (fun (c,t) -> printfn "%i %i" c t)    
0