結果

問題 No.143 豆
コンテスト
ユーザー regerege
提出日時 2016-06-21 10:57:38
言語 F#
(F# 10.0)
コンパイル:
fsharp_c _filename_
実行:
/usr/bin/dotnet_wrap
結果
AC  
実行時間 218 ms / 1,000 ms
コード長 253 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 5,108 ms
コンパイル使用メモリ 208,984 KB
実行使用メモリ 37,148 KB
最終ジャッジ日時 2026-04-03 13:52:23
合計ジャッジ時間 9,543 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge5_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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/

ソースコード

diff #
raw source code

let f (s:System.String) = s.Split(' ') |> Seq.map int64
let m =
    stdin.ReadLine() |> f |> Seq.toList
    |> function
    | [k;n;f] -> k*n
    | _ -> failwith "error!"
let s = stdin.ReadLine() |> f |> Seq.sum
if s > m then -1L
else m-s
|> printfn "%d"
0