結果

問題 No.143 豆
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-26 22:26:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 341 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 9,126 ms
コンパイル使用メモリ 192,668 KB
実行使用メモリ 35,084 KB
最終ジャッジ日時 2024-07-23 10:50:55
合計ジャッジ時間 15,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
35,084 KB
testcase_01 AC 337 ms
34,960 KB
testcase_02 AC 340 ms
34,956 KB
testcase_03 AC 341 ms
34,680 KB
testcase_04 AC 338 ms
34,828 KB
testcase_05 AC 339 ms
34,940 KB
testcase_06 AC 337 ms
34,716 KB
testcase_07 AC 335 ms
34,580 KB
testcase_08 AC 336 ms
34,284 KB
testcase_09 AC 338 ms
34,580 KB
testcase_10 AC 339 ms
34,708 KB
testcase_11 AC 335 ms
34,836 KB
testcase_12 AC 337 ms
34,568 KB
testcase_13 AC 339 ms
34,968 KB
testcase_14 AC 339 ms
34,836 KB
testcase_15 AC 335 ms
34,280 KB
testcase_16 AC 339 ms
34,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (229 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 split (s:string) = s.Split ' '

let sum0 = split >> Array.map int >> fun (a:int[]) -> a.[0] * a.[1]
let sum1 = split >> Seq.map int >> Seq.sum

let count =
    match (stdin.ReadLine () |> sum0,
           stdin.ReadLine () |> sum1) with
    | (a, b) when a >= b -> a - b
    | _ -> -1

count |> printfn "%d"
0