結果

問題 No.785 色食い虫
ユーザー taktak
提出日時 2019-02-10 00:29:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 10,125 ms
コンパイル使用メモリ 191,020 KB
実行使用メモリ 34,480 KB
最終ジャッジ日時 2024-07-01 19:20:14
合計ジャッジ時間 21,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
34,084 KB
testcase_01 AC 332 ms
34,152 KB
testcase_02 AC 334 ms
34,356 KB
testcase_03 AC 333 ms
34,112 KB
testcase_04 AC 336 ms
34,220 KB
testcase_05 AC 333 ms
34,352 KB
testcase_06 AC 332 ms
34,348 KB
testcase_07 AC 334 ms
34,412 KB
testcase_08 AC 332 ms
34,212 KB
testcase_09 AC 334 ms
34,212 KB
testcase_10 AC 332 ms
34,408 KB
testcase_11 AC 333 ms
34,120 KB
testcase_12 AC 332 ms
34,396 KB
testcase_13 AC 334 ms
34,480 KB
testcase_14 AC 333 ms
34,156 KB
testcase_15 AC 340 ms
34,212 KB
testcase_16 AC 339 ms
34,152 KB
testcase_17 AC 334 ms
34,212 KB
testcase_18 AC 334 ms
34,356 KB
testcase_19 AC 332 ms
34,264 KB
testcase_20 AC 333 ms
34,152 KB
testcase_21 AC 333 ms
34,084 KB
testcase_22 AC 334 ms
34,348 KB
testcase_23 AC 332 ms
34,076 KB
testcase_24 AC 334 ms
34,404 KB
testcase_25 AC 338 ms
34,340 KB
testcase_26 AC 334 ms
34,284 KB
testcase_27 AC 334 ms
34,264 KB
testcase_28 AC 333 ms
34,472 KB
testcase_29 AC 335 ms
34,204 KB
testcase_30 AC 336 ms
34,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (524 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 parseInput = function
  | "NONE" -> [||]
  | x -> x.Split(',') |> Array.map (fun x -> x.[0])

let R() = stdin.ReadLine() |> parseInput

let solve r g b =
  let f = Array.length >> (-) 16
  let rN = r |> f
  let gN = g |> f
  let bN = b |> f
  rN * rN * gN * gN * bN * bN

let r = R()
let g = R()
let b = R()
solve r g b
|> printfn "%i"
0