結果
問題 | No.191 供託金 |
ユーザー | regerege |
提出日時 | 2017-04-16 15:37:15 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 327 ms / 5,000 ms |
コード長 | 175 bytes |
コンパイル時間 | 13,001 ms |
コンパイル使用メモリ | 183,664 KB |
実行使用メモリ | 34,716 KB |
最終ジャッジ日時 | 2024-07-19 04:03:14 |
合計ジャッジ時間 | 15,837 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (394 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/
ソースコード
let _ = stdin.ReadLine()let arr = stdin.ReadLine().Split(' ') |> Array.map intlet b = Array.sum arr / 10arr |> Array.filter((>=)b) |> Array.length |> (*) 30|> printfn "%d"