結果

問題 No.191 供託金
ユーザー regeregeregerege
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
33,688 KB
testcase_01 AC 314 ms
33,844 KB
testcase_02 AC 318 ms
34,324 KB
testcase_03 AC 316 ms
34,324 KB
testcase_04 AC 327 ms
34,316 KB
testcase_05 AC 314 ms
34,056 KB
testcase_06 AC 318 ms
33,928 KB
testcase_07 AC 304 ms
34,196 KB
testcase_08 AC 308 ms
34,244 KB
testcase_09 AC 318 ms
33,696 KB
testcase_10 AC 309 ms
34,316 KB
testcase_11 AC 311 ms
34,060 KB
testcase_12 AC 319 ms
33,664 KB
testcase_13 AC 319 ms
34,440 KB
testcase_14 AC 315 ms
33,916 KB
testcase_15 AC 308 ms
34,452 KB
testcase_16 AC 300 ms
34,060 KB
testcase_17 AC 312 ms
34,192 KB
testcase_18 AC 310 ms
33,840 KB
testcase_19 AC 307 ms
34,312 KB
testcase_20 AC 303 ms
34,320 KB
testcase_21 AC 311 ms
34,184 KB
testcase_22 AC 326 ms
34,056 KB
testcase_23 AC 316 ms
34,188 KB
testcase_24 AC 310 ms
34,716 KB
testcase_25 AC 319 ms
33,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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/

ソースコード

diff #

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"
0