結果

問題 No.723 2つの数の和
ユーザー taktak
提出日時 2019-02-22 20:04:39
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 18,481 ms
コンパイル使用メモリ 186,260 KB
実行使用メモリ 83,148 KB
最終ジャッジ日時 2024-11-25 00:23:10
合計ジャッジ時間 15,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
30,592 KB
testcase_01 AC 72 ms
30,464 KB
testcase_02 AC 70 ms
30,592 KB
testcase_03 AC 244 ms
71,264 KB
testcase_04 AC 305 ms
77,636 KB
testcase_05 AC 284 ms
72,360 KB
testcase_06 AC 286 ms
74,644 KB
testcase_07 AC 189 ms
61,440 KB
testcase_08 AC 195 ms
61,824 KB
testcase_09 AC 300 ms
77,912 KB
testcase_10 AC 185 ms
61,312 KB
testcase_11 AC 92 ms
37,248 KB
testcase_12 AC 212 ms
66,048 KB
testcase_13 AC 305 ms
77,972 KB
testcase_14 AC 141 ms
51,456 KB
testcase_15 AC 190 ms
61,568 KB
testcase_16 AC 229 ms
67,348 KB
testcase_17 AC 278 ms
71,932 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 69 ms
30,592 KB
testcase_21 AC 70 ms
30,336 KB
testcase_22 AC 70 ms
30,592 KB
testcase_23 AC 378 ms
83,148 KB
testcase_24 AC 155 ms
55,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (482 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 #

open System

let solve a x =
  let countMap = 
    a |> Array.countBy id
    |> Map.ofArray
  let countMapSeq = countMap |> Map.toSeq

  countMapSeq |> Seq.map(fun (k, v) ->
    let k' = x - k
    countMap.TryFind k' |> function
    | None -> 0
    | Some c -> v * c)
  |> Seq.sum  

let R() = Console.ReadLine().Split() |> Array.map int64

let N, X = 
  let t = R()
  t.[0], t.[1]

let a = R()

solve a X
|> Console.WriteLine
0