結果
| 問題 | No.191 供託金 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-04-16 15:37:15 |
| 言語 | F# (F# 10.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 210 ms / 5,000 ms |
| + 747µs | |
| コード長 | 175 bytes |
| 記録 | |
| コンパイル時間 | 10,265 ms |
| コンパイル使用メモリ | 207,212 KB |
| 実行使用メモリ | 37,288 KB |
| 最終ジャッジ日時 | 2026-08-17 23:48:20 |
| 合計ジャッジ時間 | 18,102 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (241 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
let _ = stdin.ReadLine()
let arr = stdin.ReadLine().Split(' ') |> Array.map int
let b = Array.sum arr / 10
arr |> Array.filter((>=)b) |> Array.length |> (*) 30
|> printfn "%d"