結果

問題 No.279 木の数え上げ
ユーザー ToniTakekawaToniTakekawa
提出日時 2016-03-20 00:49:14
言語 F#
(F# 4.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 300 bytes
コンパイル時間 11,650 ms
コンパイル使用メモリ 186,876 KB
実行使用メモリ 65,280 KB
最終ジャッジ日時 2024-10-14 15:26:45
合計ジャッジ時間 23,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
34,160 KB
testcase_01 AC 350 ms
34,212 KB
testcase_02 AC 349 ms
34,812 KB
testcase_03 AC 347 ms
34,868 KB
testcase_04 AC 348 ms
34,696 KB
testcase_05 AC 349 ms
34,916 KB
testcase_06 AC 348 ms
34,972 KB
testcase_07 AC 349 ms
34,732 KB
testcase_08 AC 346 ms
34,680 KB
testcase_09 AC 349 ms
34,812 KB
testcase_10 MLE -
testcase_11 AC 437 ms
59,328 KB
testcase_12 AC 596 ms
63,360 KB
testcase_13 AC 402 ms
51,012 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 641 ms
63,616 KB
testcase_17 MLE -
testcase_18 AC 540 ms
61,288 KB
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (386 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 #

open System

let S = Console.ReadLine()
let strCharCount s c = s |> Seq.filter(fun s -> s = c) |> Seq.length
let charCounts = strCharCount S
let treCounts = "tre" |> Seq.map charCounts
let zip = Seq.zip treCounts [|1;1;2|] 
let div = zip |> Seq.map( fun (a, b) -> a / b ) |> Seq.min

printfn "%d" div
0