結果
| 問題 | No.191 供託金 |
| コンテスト | |
| ユーザー |
chike_plus
|
| 提出日時 | 2019-03-27 23:42:15 |
| 言語 | F# (F# 10.0) |
| 結果 |
AC
|
| 実行時間 | 54 ms / 5,000 ms |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 5,125 ms |
| コンパイル使用メモリ | 212,964 KB |
| 実行使用メモリ | 31,696 KB |
| 最終ジャッジ日時 | 2026-04-27 13:09:53 |
| 合計ジャッジ時間 | 7,729 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (173 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
let ``No.191 供託金``() =
let n = stdin.ReadLine() |> int
stdin.ReadLine().Split(' ')
|> Array.map (int)
|> fun args ->
args
|> Array.sumBy (fun n -> if (n*10) <= (args |> Array.sum) then 30 else 0 )
|> stdout.WriteLine
``No.191 供託金``()
chike_plus