結果

問題 No.143 豆
ユーザー regeregeregerege
提出日時 2016-06-21 10:57:38
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 1,000 ms
コード長 253 bytes
コンパイル時間 6,854 ms
コンパイル使用メモリ 191,212 KB
実行使用メモリ 35,140 KB
最終ジャッジ日時 2024-07-23 10:31:41
合計ジャッジ時間 13,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,188 KB
testcase_01 AC 341 ms
33,936 KB
testcase_02 AC 341 ms
34,300 KB
testcase_03 AC 339 ms
34,872 KB
testcase_04 AC 341 ms
35,140 KB
testcase_05 AC 341 ms
34,984 KB
testcase_06 AC 339 ms
35,000 KB
testcase_07 AC 343 ms
35,008 KB
testcase_08 AC 339 ms
34,876 KB
testcase_09 AC 339 ms
34,192 KB
testcase_10 AC 340 ms
34,728 KB
testcase_11 AC 340 ms
34,872 KB
testcase_12 AC 337 ms
34,748 KB
testcase_13 AC 340 ms
34,120 KB
testcase_14 AC 343 ms
34,756 KB
testcase_15 AC 339 ms
34,752 KB
testcase_16 AC 341 ms
34,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (236 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 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